Skip to content

Commit

Permalink
ci: Configure linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jackrosenthal committed Sep 29, 2024
1 parent ca48083 commit 26d58a4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/unit-tests.yaml → .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: Unit Tests
name: QA Checks
on: [push, pull_request]
jobs:
unit-tests:
name: Unit Tests
runs-on: "ubuntu-24.04"
steps:
- uses: actions/checkout@v4
Expand All @@ -10,10 +11,20 @@ jobs:
- name: Run Tests
run: hatch test -a
speedtest:
name: Speedtest
runs-on: "ubuntu-24.04"
steps:
- uses: actions/checkout@v4
- name: Install Hatch
uses: pypa/hatch@257e27e51a6a5616ed08a39a408a21c35c9931bc
- name: Run Speedtest
run: hatch run speedtest:run
lint:
name: Lint
runs-on: "ubuntu-24.04"
steps:
- uses: actions/checkout@v4
- name: Install Hatch
uses: pypa/hatch@257e27e51a6a5616ed08a39a408a21c35c9931bc
- name: Check Linter
run: hatch fmt --check

0 comments on commit 26d58a4

Please sign in to comment.