Skip to content

πŸ’š Add CI for new-setup #9

πŸ’š Add CI for new-setup

πŸ’š Add CI for new-setup #9

Workflow file for this run

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