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 4482b50 commit 96d71ceCopy full SHA for 96d71ce
.github/workflows/ci.yml
@@ -2,10 +2,6 @@ name: CI
2
3
on:
4
pull_request:
5
- push:
6
- branches:
7
- - master
8
- workflow_dispatch:
9
10
jobs:
11
required-files:
@@ -26,21 +22,12 @@ jobs:
26
22
path: 'new'
27
23
28
24
# Pull Requests
29
- - name: Checkout the target branch (PRs)
25
+ - name: Checkout the target branch
30
uses: actions/checkout@v2
31
- if: github.event_name == 'pull_request'
32
with:
33
ref: '${{ github.base_ref }}'
34
path: 'old'
35
-
36
- # Pushes
37
- - name: Checkout the previous commit (Pushes)
38
- uses: actions/checkout@v2
39
- if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
40
- with:
41
- ref: '${{ github.sha }}~'
42
- path: 'old'
43
+
44
- name: Check that no test has been mutated
45
run: |
46
for oldf in old/exercises/*/canonical-data.json; do
0 commit comments