Skip to content

Actions(deps): Bump actions/checkout from 3 to 4 #142

Actions(deps): Bump actions/checkout from 3 to 4

Actions(deps): Bump actions/checkout from 3 to 4 #142

Workflow file for this run

name: Python package
on: [pull_request, push]
jobs:
build:
strategy:
matrix:
python-version: [3.8, 3.11] # oldest and most recent version supported
runs-on: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make install-deps-dev
- name: Format with black
run: |
make format-check
- name: Lint with flake8
run: |
make lint
- name: Test with pytest
run: |
make test