Skip to content

Merge branch 'master' of github.com:benji-york/manuel #32

Merge branch 'master' of github.com:benji-york/manuel

Merge branch 'master' of github.com:benji-york/manuel #32

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