Skip to content

ci update

ci update #365

Workflow file for this run

name: CI
on:
push:
branches: ["*"]
pull_request: # needed to trigger on others' PRs
workflow_dispatch: # needed to trigger workflows manually
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
exclude:
[
{ platform: macos-latest, python-version: "3.11" },
]
runs-on: ${{ matrix.platform }}
steps:
- run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v4
with:
fetch-depth: 0 # nicer to have all git history when debugging/for tests
- run: ./install
- uses: actions/upload-artifact@v4
with:
name: .coverage.mypy-${{ matrix.platform }}_${{ matrix.python-version }}
path: .coverage.mypy/