Skip to content

CI

CI #1974

Workflow file for this run

---
name: CI
on:
push:
schedule:
- cron: "0 0 * * *" # daily
jobs:
mypy:
strategy:
matrix:
python_ver:
# - "3.6"
- "3"
- "3.10"
- "3.11"
- "3.7"
- "3.8"
- "3.9"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python_ver }}
- run: |-
make lint