File tree Expand file tree Collapse file tree 2 files changed +67
-0
lines changed Expand file tree Collapse file tree 2 files changed +67
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : TagBot
2
+ on :
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
7
+ jobs :
8
+ TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : JuliaRegistries/TagBot@v1
13
+ with :
14
+ token : ${{ secrets.GITHUB_TOKEN }}
15
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ push :
7
+ branches :
8
+ - master
9
+ tags : ' *'
10
+ jobs :
11
+ test :
12
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
13
+ runs-on : ${{ matrix.os }}
14
+ strategy :
15
+ fail-fast : false
16
+ matrix :
17
+
18
+ include :
19
+ - version : ' 1.8'
20
+ os : ubuntu-latest
21
+ arch : x64
22
+ - version : ' 1.8'
23
+ os : windows-latest
24
+ arch : x64
25
+ - version : ' 1'
26
+ os : ubuntu-latest
27
+ arch : x64
28
+ - version : ' 1'
29
+ os : windows-latest
30
+ arch : x64
31
+ steps :
32
+ - uses : actions/checkout@v2
33
+ - uses : julia-actions/setup-julia@v1
34
+ with :
35
+ version : ${{ matrix.version }}
36
+ arch : ${{ matrix.arch }}
37
+ - uses : actions/cache@v1
38
+ env :
39
+ cache-name : cache-artifacts
40
+ with :
41
+ path : ~/.julia/artifacts
42
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
43
+ restore-keys : |
44
+ ${{ runner.os }}-test-${{ env.cache-name }}-
45
+ ${{ runner.os }}-test-
46
+ ${{ runner.os }}-
47
+ - uses : julia-actions/julia-buildpkg@v1
48
+ - uses : julia-actions/julia-runtest@v1
49
+ - uses : julia-actions/julia-processcoverage@v1
50
+ - uses : codecov/codecov-action@v4
51
+ with :
52
+ file : lcov.info
You can’t perform that action at this time.
0 commit comments