Skip to content

fix(ci): drop macos-13 (unsupported), fix audit test on CI runners #4

fix(ci): drop macos-13 (unsupported), fix audit test on CI runners

fix(ci): drop macos-13 (unsupported), fix audit test on CI runners #4

Workflow file for this run

name: CI
on:
push:
branches: [main, modernize-v1]
pull_request:
branches: [main]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14, macos-15]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e ".[dev]"
- run: ruff check src/
- run: mypy src/
- run: pytest tests/ -v --cov=macos_maid --cov-report=term-missing
lint:
runs-on: macos-14
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -e ".[dev]"
- run: ruff check src/ tests/
- run: mypy src/