Skip to content

Commit

Permalink
Create checks.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende authored Jan 20, 2024
1 parent 5bc9e28 commit 936423b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: PR

on:
push:
branches:
- "main"
pull_request:

jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
with:
args: --output-format github

0 comments on commit 936423b

Please sign in to comment.