Skip to content

Commit f6c6036

Browse files
committed
simplify CI
1 parent c5e6871 commit f6c6036

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/workflows/tests.yml

+2-10
Original file line numberDiff line numberDiff line change
@@ -132,25 +132,17 @@ jobs:
132132
- name: Run tests
133133
run: |
134134
make test
135+
135136
typecheck:
136137
runs-on: ubuntu-latest
137-
138-
# We want to run on external PRs, but not on our own internal PRs as they'll be run
139-
# by the push to the branch.
140-
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
141-
142-
strategy:
143-
matrix:
144-
python-version: [3.11]
145-
146138
steps:
147139
- name: Checkout Code
148140
uses: actions/checkout@v3
149141

150142
- name: Setup Python
151143
uses: actions/setup-python@v4
152144
with:
153-
python-version: ${{ matrix.python-version }}
145+
python-version: "3.11"
154146

155147
- name: Install Packages
156148
shell: bash

0 commit comments

Comments
 (0)