Skip to content

Bump actions/checkout from 3 to 4 #31

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #31

Workflow file for this run

name: Tests
on:
pull_request
jobs:
tests:
name: Run tests for ${{ matrix.os }} for ${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
submodules: true
- name: Use Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install test dependencies
run: python -m pip install ".[test]"
- name: Test
run: python -m pytest