Skip to content

Update base Docker image from python:3.11.4-slim-buster to python:3.1… #90

Update base Docker image from python:3.11.4-slim-buster to python:3.1…

Update base Docker image from python:3.11.4-slim-buster to python:3.1… #90

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