flake8 version check #52
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: flake8 version check | |
on: | |
schedule: | |
# run the action always at 1:11 UTC (i.e. 3:11 CEST) | |
- cron: '11 1 * * *' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: python -m pip install requests tomli | |
- name: Perform flake8 version check | |
run: python .github/workflows/maintenance.py check |