File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CompatHelper
2+ on :
3+ schedule :
4+ - cron : 0 0 * * *
5+ workflow_dispatch :
6+ jobs :
7+ CompatHelper :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : Pkg.add("CompatHelper")
11+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+ - name : CompatHelper.main()
13+ env :
14+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15+ COMPATHELPER_PRIV : ${{ secrets.DOCUMENTER_KEY }}
16+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 11name : TagBot
22on :
3- schedule :
4- - cron : 0 0 * * *
3+ issue_comment :
4+ types :
5+ - created
6+ workflow_dispatch :
57jobs :
68 TagBot :
9+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710 runs-on : ubuntu-latest
811 steps :
912 - uses : JuliaRegistries/TagBot@v1
1013 with :
1114 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+ - push
4+ - pull_request
5+ jobs :
6+ test :
7+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
8+ runs-on : ${{ matrix.os }}
9+ strategy :
10+ fail-fast : false
11+ matrix :
12+ version :
13+ - ' 1.0' # earliest supported
14+ - ' 1.5' # latest release
15+ - ' nightly'
16+ os :
17+ - ubuntu-latest
18+ arch :
19+ - x64
20+ steps :
21+ - uses : actions/checkout@v2
22+ - uses : julia-actions/setup-julia@v1
23+ with :
24+ version : ${{ matrix.version }}
25+ arch : ${{ matrix.arch }}
26+ - uses : actions/cache@v1
27+ env :
28+ cache-name : cache-artifacts
29+ with :
30+ path : ~/.julia/artifacts
31+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
32+ restore-keys : |
33+ ${{ runner.os }}-test-${{ env.cache-name }}-
34+ ${{ runner.os }}-test-
35+ ${{ runner.os }}-
36+ - uses : julia-actions/julia-buildpkg@v1
37+ - uses : julia-actions/julia-runtest@v1
38+ - uses : julia-actions/julia-processcoverage@v1
39+ - uses : codecov/codecov-action@v1
40+ with :
41+ file : lcov.info
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# BitFlags.jl
22
3- [ ![ Build Status] ( https://travis-ci.com/jmert/BitFlags.jl.svg?branch=master )] ( https://travis-ci.com/jmert/BitFlags.jl )
3+ [ ![ Build Status] ( https://github.com/jmert/BitFlags.jl/workflows/CI/badge.svg )] ( https://github.com/jmert/BitFlags.jl/actions )
4+ [ ![ Coverage] ( https://codecov.io/gh/jmert/BigFlags.jl/branch/master/graph/badge.svg )] ( https://codecov.io/gh/jmert/BigFlags.jl )
45
56` BitFlag.jl ` provides an ` Enum ` -like type for bit flag option values. The main
67motivations are:
You can’t perform that action at this time.
0 commit comments