Skip to content

Add triggers to filter #278

Add triggers to filter

Add triggers to filter #278

Workflow file for this run

name: Code Checks
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.11]
steps:
- uses: actions/checkout@v3
- name: Install OpenBLAS for SciPy
run: sudo apt-get update && sudo apt-get install -y libopenblas-dev
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install poetry
- name: Test with pytest
run: |
make install
make check