Skip to content

Commit

Permalink
Add GitHub workflow to lint new code
Browse files Browse the repository at this point in the history
  • Loading branch information
zjosua committed Sep 13, 2023
1 parent b17c3a5 commit 8be481b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: check-code
run-name: Check ${{ github.event_name }} by @${{ github.actor }}

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check"
src: "./src/multiple_choice"

0 comments on commit 8be481b

Please sign in to comment.