Skip to content

Commit

Permalink
Check with flake8 after push
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Jun 21, 2024
1 parent 8d11072 commit 35079d3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/flake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: flake

on: [push, pull_request]

jobs:
flake:

strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Test
run: |
pip install flake8
flake8 .

0 comments on commit 35079d3

Please sign in to comment.