Skip to content

Bump actions/checkout from 3 to 4 #95

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #95

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.8.9' # Monterey default
- '3.10' # Latest
steps:
- name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/[email protected]
with:
python-version: '${{ matrix.python-version }}'
- uses: actions/checkout@v4
- run: pip install -r requirements.txt
- run: pip install -r requirements-test.txt
- name: 'Run tests'
run: python -m unittest