Skip to content

Bump actions/setup-python from 4 to 5 #3

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #3

Workflow file for this run

name: PyTest
on:
push:
pull_request:
env:
COLUMNS: 120
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
with:
python-version-file: .python-version
- name: Install Dependencies
run: make install
- name: Run Tests
run: make pytest