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 07a0242 commit 942bb9cCopy full SHA for 942bb9c
.github/workflows/ci.yml
@@ -7,8 +7,15 @@ on:
7
types: [tag-release]
8
9
jobs:
10
+ check-duplicate-runs:
11
+ name: Check Duplicate Runs
12
+ runs-on: ubuntu-latest
13
+ if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
14
+ steps: []
15
+
16
lint:
17
name: Lint
18
+ needs: [check-duplicate-runs]
19
runs-on: ubuntu-latest
20
steps:
21
- name: Checkout
@@ -30,6 +37,7 @@ jobs:
30
37
31
38
test:
32
39
name: Test
40
33
41
strategy:
34
42
matrix:
35
43
os:
0 commit comments