62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
name: test
|
|
|
|
on: [push, pull_request]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-24.04, windows-2022, windows-11-arm]
|
|
python-version: ['3.12', '3.13']
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
persist-credentials: false
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install poetry
|
|
python -m poetry install
|
|
|
|
- name: Run mypy
|
|
run: |
|
|
python -m poetry run mypy .
|
|
|
|
- name: Run flake8
|
|
run: |
|
|
python -m poetry run flake8 .
|
|
|
|
- name: Run tests
|
|
run: |
|
|
python -m poetry run pytest
|
|
|
|
zizmor:
|
|
runs-on: ubuntu-24.04
|
|
|
|
permissions:
|
|
contents: read
|
|
security-events: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Run zizmor
|
|
run: pipx run zizmor .
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|