We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58683f6 commit 6e7f31eCopy full SHA for 6e7f31e
2 files changed
.github/workflows/ruff.yaml .github/workflows/ci.yaml.github/workflows/ruff.yaml renamed to .github/workflows/ci.yaml
@@ -1,20 +1,34 @@
1
----
2
-name: ruff
+name: CI
3
4
on:
5
- pull_request:
+ push:
6
branches:
7
- main
8
-
9
-permissions:
10
- contents: read
+ pull_request:
+ types:
+ - opened
+ - synchronize
11
12
defaults:
13
run:
14
shell: bash
15
16
+permissions:
17
+ contents: read
18
+
19
jobs:
- ci:
20
+ mypy:
21
+ runs-on: ubuntu-latest
22
+ steps:
23
+ # Checkout the code
24
+ - uses: actions/checkout@v6
25
+ - uses: jpetrucciani/mypy-check@master
26
+ with:
27
+ path: 'python/runfiles'
28
29
30
+ path: 'tests/runfiles'
31
+ ruff:
32
runs-on: ubuntu-latest
33
steps:
34
- uses: actions/checkout@v6
.github/workflows/mypy.yaml
0 commit comments