Skip to content

enh: file updates for workshop #3

enh: file updates for workshop

enh: file updates for workshop #3

Workflow file for this run

name: Test Suite
on:
workflow_dispatch: {}
workflow_call: {}
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install hatch
uses: pypa/hatch@install

Check failure on line 25 in .github/workflows/lint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
- name: Check code style
run: hatch run style:code
- name: Check docstrings
run: hatch run style:docstrings