Skip to content

text: skip PermissionError #32

text: skip PermissionError

text: skip PermissionError #32

Workflow file for this run

name: ci
on:
push:
paths:
- "**.py"
- .github/workflows/ci.yml
jobs:
core:
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: pip install .[tests,lint]
- run: flake8
- run: mypy
- run: pytest