Skip to content

Bump actions/checkout from 2 to 4 #105

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #105

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Run tests
run: |
pytest --doctest-modules