Files
concrete/.github/workflows/main.yml
2022-06-09 22:37:34 +02:00

23 lines
350 B
YAML

name: PEP8
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '0 0 * * 0' # weekly
env:
JOBS: 2
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v2
- name: PEP8
run: |
pip install --upgrade pyproject-flake8
flake8 new_scripts.py