Skip to content

Bump zizmorcore/zizmor-action from 0.6.0 to 0.6.1 #676

Bump zizmorcore/zizmor-action from 0.6.0 to 0.6.1

Bump zizmorcore/zizmor-action from 0.6.0 to 0.6.1 #676

Workflow file for this run

name: CI
on:
- push
- pull_request
- workflow_dispatch
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
main:
strategy:
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
runs-on: ubuntu-latest
name: Python ${{ matrix.python }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python }}
- name: apt update
run:
sudo apt-get update
- name: prepare pip
run:
python -m pip install --upgrade pip
- name: install package
run:
python -m pip install .[dev]
- name: run tests
run:
python -m unittest discover --verbose --start-directory tests
- name: run flake8
run:
flake8
- name: mypy
run:
mypy
- name: codespell
run:
codespell * .github/ --skip *.html --skip *.hocr