Skip to content

Commit

Permalink
Add GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb authored and indygreg committed Apr 14, 2024
1 parent f5980ce commit d09ff92
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

name: Check

on:
push:
pull_request:

jobs:
check:
runs-on: "ubuntu-latest"
name: "check"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: "Run checks"
run: |
python ./check.py

0 comments on commit d09ff92

Please sign in to comment.