Skip to content

Commit

Permalink
feat(ci): add type check
Browse files Browse the repository at this point in the history
  • Loading branch information
CNSeniorious000 committed Aug 9, 2024
1 parent 1fd646a commit 48b0eba
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: ruff checks
name: CI

on: ["push", "pull_request"]
on: ["push", "pull_request", "workflow_dispatch"]

jobs:
ruff:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -21,8 +21,11 @@ jobs:
- name: Ruff lint check
run: |
ruff check --output-format=github
- name: Pyright type check
run: |
npx pyright
publish:
needs: ruff
needs: check
runs-on: ubuntu-latest
permissions:
id-token: write
Expand Down

0 comments on commit 48b0eba

Please sign in to comment.