Skip to content

Merge pull request #39 from perrinjerome/fix/debug-checker #33

Merge pull request #39 from perrinjerome/fix/debug-checker

Merge pull request #39 from perrinjerome/fix/debug-checker #33

Workflow file for this run

name: Check project
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.11', '3.10', '3.9', '3.8']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Build project
run: make
- name: Check project
run: make check