Skip to content

Update: Debian base image, cookiecutter, pytest, black, mypy, and ruff #89

Update: Debian base image, cookiecutter, pytest, black, mypy, and ruff

Update: Debian base image, cookiecutter, pytest, black, mypy, and ruff #89

Workflow file for this run

name: "Continuous Integration"
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: "Set up Python"
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: "Set up PDM"
run: pip install --user pdm==2.6.1
- name: "Test Cookiecutter"
run: make test