Skip to content

Update the project template. #4

Update the project template.

Update the project template. #4

Workflow file for this run

# See: https://github.com/actions/setup-python
---
name: Python
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
test:
runs-on: macos-15
strategy:
matrix:
python-version: [3.13]
steps:
- uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Run tests
run: python3 --version