Skip to content

Bump actions/setup-python from 3 to 4.1.0 (#6) #40

Bump actions/setup-python from 3 to 4.1.0 (#6)

Bump actions/setup-python from 3 to 4.1.0 (#6) #40

Workflow file for this run

---
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v3
- name: "Set up Python"
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: "Install dependencies"
run: |
python -m pip install .[test]
# - name: "Lint code"
# run: |
# pre-commit run --all-files
- name: "Build sample"
run: |
make -C docs dirhtml
- name: "Run tests"
run: |
pytest -vvv