π Add CI for new-setup #9
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: build | |
on: | |
push: | |
branches: [ master, new-setup ] | |
jobs: | |
main: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install Build + Test Dependencies | |
run: pip install -r requirements-test.txt | |
- name: Install Bitstream | |
run: python setup.py --cython install | |
- name: Run Tests | |
run: python test.py | |
- name: Run Tests (verbose) | |
run: python test.py --verbose |