Skip to content

Bump actions/setup-python from 4 to 5 #64

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #64

Workflow file for this run

name: Check code
on:
- push
- pull_request
jobs:
check:
strategy:
matrix:
python:
- "3.9"
- "3.10"
- "3.11"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: make deps deps-dev
- run: make type
- run: make test
- run: make lint
continue-on-error: ${{ contains(github.event.head_commit.message, 'WIP') }}