Skip to content

Bump actions/setup-python from 5.0.0 to 5.1.0 #155

Bump actions/setup-python from 5.0.0 to 5.1.0

Bump actions/setup-python from 5.0.0 to 5.1.0 #155

Workflow file for this run

---
name: Continuous Integration
"on":
pull_request: null
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Set up PDM
run: |
pip install --upgrade pip==23.2.1
pip install --user pdm==2.9.3
pdm install
- name: Test Cookiecutter
run: make test