File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
name : Test examples without nix
6
6
7
+ # this cancels workflows currently in progress if you start a new one
8
+ concurrency :
9
+ group : ${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress : true
11
+
12
+ # Do not add permissions here! Configure them at the job level!
13
+ permissions : {}
14
+
7
15
jobs :
8
16
test-examples :
9
17
runs-on : ${{ matrix.operating-system }}
Original file line number Diff line number Diff line change 2
2
pull_request :
3
3
workflow_dispatch :
4
4
5
+ name : Test examples on Nix
6
+
5
7
# this cancels workflows currently in progress if you start a new one
6
8
concurrency :
7
9
group : ${{ github.workflow }}-${{ github.ref }}
8
10
cancel-in-progress : true
9
11
10
- name : Test examples on Nix
12
+ # Do not add permissions here! Configure them at the job level!
13
+ permissions : {}
11
14
12
15
jobs :
13
16
test-examples :
You can’t perform that action at this time.
0 commit comments