Skip to content

Remove protection from slides #125

Remove protection from slides

Remove protection from slides #125

Workflow file for this run

# .github/workflows/ci.yml
name: CI
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.12', '3.13', '3.14']
task: [check, test, format]
name: ${{ matrix.task }} (py ${{ matrix.python-version }})
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
set -euxo pipefail
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Select command
run: |
case "${{ matrix.task }}" in
check) echo "CMD=make check" >> $GITHUB_ENV ;;
test) echo "CMD=make test" >> $GITHUB_ENV ;;
format) echo "CMD=make format FLAGS=--check" >> $GITHUB_ENV ;;
esac
- name: Run
run: $CMD