Do not emit UnusedParameter warnings for LLVM code #178
This file contains 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
name: Python | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
NYXSTONE_LLVM_PREFIX: "/usr/lib/llvm-15/" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
working-dir: ./bindings/python | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Packages | |
run: sudo apt-get install llvm-15 llvm-15-dev zlib1g-dev libzstd-dev | |
- name: Build | |
run: pip install . | |
working-directory: ${{ env.working-dir }} | |
- name: Test | |
run: python tests/test.py | |
working-directory: ${{ env.working-dir }} |