Skip to content

CI

CI #4

Workflow file for this run

---
name: CI
on:
push:
branches: master
pull_request:
branches: master
workflow_dispatch:
permissions:
contents: read
jobs:
ci:
strategy:
fail-fast: true
matrix:
python-version: ["3.10"]
poetry-version: ["latest"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Python Poetry Action
uses: abatilo/actions-poetry@v3
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Run tests
shell: bash
run: |
make --version
make test