File tree Expand file tree Collapse file tree 5 files changed +55
-65
lines changed Expand file tree Collapse file tree 5 files changed +55
-65
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ push :
5
+ branches :
6
+ - master
7
+ tags : ' *'
8
+ jobs :
9
+ test :
10
+ name : Julia ${{ matrix.version }} - ${{ github.event_name }}
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ version :
16
+ - ' 1.6'
17
+ - ' 1'
18
+ - ' nightly'
19
+ steps :
20
+ - uses : actions/checkout@v3
21
+ - uses : julia-actions/setup-julia@v1
22
+ with :
23
+ version : ${{ matrix.version }}
24
+ arch : ${{ matrix.arch }}
25
+ - uses : julia-actions/cache@v1
26
+ - uses : julia-actions/julia-buildpkg@v1
27
+ - uses : julia-actions/julia-runtest@v1
28
+ - uses : julia-actions/julia-processcoverage@v1
29
+ - uses : codecov/codecov-action@v3
30
+ with :
31
+ file : lcov.info
32
+
33
+ docs :
34
+ name : Documentation
35
+ runs-on : ubuntu-latest
36
+ steps :
37
+ - uses : actions/checkout@v3
38
+ - uses : julia-actions/setup-julia@v1
39
+ with :
40
+ version : ' 1.9'
41
+ - uses : julia-actions/cache@v1
42
+ - uses : julia-actions/julia-buildpkg@v1
43
+ - uses : julia-actions/julia-docdeploy@v1
44
+ env :
45
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
46
+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- schedule :
4
- - cron : 0 * * * *
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
5
7
jobs :
6
8
TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
7
10
runs-on : ubuntu-latest
8
11
steps :
9
12
- uses : JuliaRegistries/TagBot@v1
10
13
with :
11
14
token : ${{ secrets.GITHUB_TOKEN }}
15
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Primes.jl
2
2
3
- [ ![ Build Status] ( https://travis-ci.org /JuliaMath/Primes.jl.svg?branch=master )] ( https://travis-ci.org /JuliaMath/Primes.jl )
4
- [ ![ Windows Build ] ( https://ci.appveyor.com/api/projects/status/ao64pk44lwo0092r/branch/master? svg=true )] ( https://ci.appveyor.com/project/ararslan/primes-jl/branch/master )
5
- [ ![ Coverage Status ] ( https://coveralls.io/repos/github/JuliaMath/Primes.jl/badge.svg?branch=master )] ( https://coveralls.io/github/JuliaMath/Primes.jl?branch=master )
3
+ [ ![ Build Status] ( https://github.com /JuliaMath/Primes.jl/workflows/CI/badge .svg )] ( https://github.com /JuliaMath/Primes.jl/actions?query=workflow%3A%22CI%22+branch%3Amaster )
4
+ [ ![ Codecov ] ( https://codecov.io/gh/JuliaMath/Primes.jl/graph/badge. svg )] ( https://codecov.io/gh/JuliaMath/Primes.jl )
5
+
6
6
7
7
Documentation:
8
8
[ ![ ] ( https://img.shields.io/badge/docs-stable-blue.svg )] ( https://JuliaMath.github.io/Primes.jl/stable )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments