File tree 2 files changed +23
-1
lines changed
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1
1
name : Downgrade
2
+
3
+ concurrency :
4
+ group : build-${{ github.event.pull_request.number || github.ref }}-${{ github.workflow }}
5
+ cancel-in-progress : true
6
+
2
7
on :
3
8
pull_request :
4
9
branches :
5
10
- master
6
11
paths-ignore :
7
12
- ' docs/**'
13
+ - ' LICENSE'
14
+ - ' README.md'
15
+ - ' .github/workflows/TagBot.yml'
8
16
push :
9
17
branches :
10
18
- master
11
19
paths-ignore :
12
20
- ' docs/**'
21
+ - ' LICENSE'
22
+ - ' README.md'
23
+ - ' .github/workflows/TagBot.yml'
13
24
jobs :
25
+ pre_job :
26
+ # continue-on-error: true # Uncomment once integration is finished
27
+ runs-on : ubuntu-latest
28
+ # Map a step output to a job output
29
+ outputs :
30
+ should_skip : ${{ steps.skip_check.outputs.should_skip }}
31
+ steps :
32
+ - id : skip_check
33
+ uses : fkirc/skip-duplicate-actions@v5
14
34
test :
35
+ needs : pre_job
36
+ if : needs.pre_job.outputs.should_skip != 'true'
15
37
runs-on : ubuntu-latest
16
38
strategy :
17
39
matrix :
Original file line number Diff line number Diff line change 1
1
name = " ApproxFunBase"
2
2
uuid = " fbd15aa5-315a-5a7d-a8a4-24992e37be05"
3
- version = " 0.9.24 "
3
+ version = " 0.9.25 "
4
4
5
5
[deps ]
6
6
AbstractFFTs = " 621f4979-c628-5d54-868e-fcf4e3e8185c"
You can’t perform that action at this time.
0 commit comments