Skip to content

Turn on GitHub Actions #6

Turn on GitHub Actions

Turn on GitHub Actions #6

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
name: Python application
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make init-dev
- name: Lint with flake8
run: |
make check
- name: Test with
run: |
make test