File tree Expand file tree Collapse file tree 4 files changed +86
-1
lines changed
Expand file tree Collapse file tree 4 files changed +86
-1
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ push :
4+ branches :
5+ - main
6+ tags : ' *'
7+ pull_request :
8+ concurrency :
9+ # Skip intermediate builds: always.
10+ # Cancel intermediate builds: only if it is a pull request build.
11+ group : ${{ github.workflow }}-${{ github.ref }}
12+ cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
13+ jobs :
14+ test :
15+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16+ runs-on : ${{ matrix.os }}
17+ strategy :
18+ fail-fast : false
19+ matrix :
20+ version :
21+ - ' 1.6'
22+ - ' 1'
23+ - ' nightly'
24+ os :
25+ - ubuntu-latest
26+ - macOS-latest
27+ - windows-latest
28+ arch :
29+ - x64
30+ steps :
31+ - uses : actions/checkout@v2
32+ - uses : julia-actions/setup-julia@v1
33+ with :
34+ version : ${{ matrix.version }}
35+ arch : ${{ matrix.arch }}
36+ - uses : actions/cache@v1
37+ env :
38+ cache-name : cache-artifacts
39+ with :
40+ path : ~/.julia/artifacts
41+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
42+ restore-keys : |
43+ ${{ runner.os }}-test-${{ env.cache-name }}-
44+ ${{ runner.os }}-test-
45+ ${{ runner.os }}-
46+ - uses : julia-actions/julia-buildpkg@v1
47+ - uses : julia-actions/julia-runtest@v1
48+ - uses : julia-actions/julia-processcoverage@v1
49+ - uses : codecov/codecov-action@v2
50+ with :
51+ files : lcov.info
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 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 11# OneHotArrays.jl
2- Memory efficient one-hot array encodings
2+
3+ [ ![ CI] ( https://github.com/FluxML/OneHotArrays.jl/actions/workflows/CI.yml/badge.svg )] ( https://github.com/FluxML/OneHotArrays.jl/actions/workflows/CI.yml )
4+
5+ Memory efficient one-hot array encodings (primarily for use in machine-learning contexts like Flux.jl).
You can’t perform that action at this time.
0 commit comments