File tree Expand file tree Collapse file tree 3 files changed +49
-0
lines changed Expand file tree Collapse file tree 3 files changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CompatHelper
2+
3+ on :
4+ schedule :
5+ - cron : ' 00 23 * * *'
6+
7+ jobs :
8+ CompatHelper :
9+ runs-on : ${{ matrix.os }}
10+ strategy :
11+ matrix :
12+ julia-version : [1.3.0]
13+ julia-arch : [x86]
14+ os : [ubuntu-latest]
15+ steps :
16+ - uses : julia-actions/setup-julia@latest
17+ with :
18+ version : ${{ matrix.julia-version }}
19+ - name : Pkg.add("CompatHelper")
20+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
21+ - name : CompatHelper.main()
22+ env :
23+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
24+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 1+ name : TagBot
2+ on :
3+ schedule :
4+ - cron : 0 * * * *
5+ jobs :
6+ TagBot :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : JuliaRegistries/TagBot@v1
10+ with :
11+ token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1+ name : Docker Image CI
2+
3+ on : [push]
4+
5+ jobs :
6+
7+ build :
8+
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - uses : actions/checkout@v2
13+ - name : Build the Docker image
14+ run : docker build . --file Dockerfile --tag my-image-name:$(date +%s)
You can’t perform that action at this time.
0 commit comments