Files
concrete/.github/workflows/pep8.yml
2022-12-20 17:44:03 +01:00

23 lines
323 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 ruff
ruff .