Update action dependencies and relicense #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: push | |
| jobs: | |
| python: | |
| runs-on: ubuntu-latest | |
| name: Python support on ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - run: python --version | |
| - name: Set up Binary Ninja | |
| uses: ./ # Uses action in the root directory | |
| id: setup-binja | |
| with: | |
| license: '${{ secrets.BN_SERIAL }}' | |
| - name: Get Binary Ninja package version | |
| run: python -c "from binaryninja import *; print(core_version())" |