File tree Expand file tree Collapse file tree 3 files changed +64
-1
lines changed
Expand file tree Collapse file tree 3 files changed +64
-1
lines changed Original file line number Diff line number Diff line change 1+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
3+ version : 2
4+ updates :
5+ - package-ecosystem : " github-actions" # See documentation for possible values
6+ directory : " /" # Location of package manifests
7+ schedule :
8+ interval : " daily"
Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ pull_request :
4+ branches :
5+ - main
6+ push :
7+ branches :
8+ - main
9+ tags : ' *'
10+ jobs :
11+ test :
12+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
13+ runs-on : ${{ matrix.os }}
14+ continue-on-error : ${{ matrix.allow_failure }}
15+ strategy :
16+ fail-fast : false
17+ matrix :
18+ version :
19+ - ' lts'
20+ - ' 1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
21+ - ' pre'
22+ os : [ubuntu-latest]
23+ arch : [x64]
24+ allow_failure : [false]
25+ steps :
26+ - uses : actions/checkout@v4
27+ - uses : julia-actions/setup-julia@v2
28+ with :
29+ version : ${{ matrix.version }}
30+ arch : ${{ matrix.arch }}
31+ - uses : julia-actions/cache@v2
32+ - uses : julia-actions/julia-buildpkg@v1
33+ - uses : julia-actions/julia-runtest@v1
34+ env :
35+ JULIA_NUM_THREADS : 4,1
36+ - uses : julia-actions/julia-processcoverage@v1
37+ - uses : codecov/codecov-action@v5
38+ env :
39+ CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
40+ with :
41+ file : lcov.info
42+
43+ docs :
44+ name : Documentation
45+ runs-on : ubuntu-latest
46+ steps :
47+ - uses : actions/checkout@v4
48+ - uses : julia-actions/cache@v2
49+ - uses : julia-actions/julia-buildpkg@latest
50+ - uses : julia-actions/julia-docdeploy@latest
51+ env :
52+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
53+ DOCUMENTER_KEY : ${{ secrets.DOCUMENTER_KEY }}
Original file line number Diff line number Diff line change 11name = " Scryfall"
22uuid = " 26fa0e40-23c6-5e70-8e5d-49a8a0c72583"
33authors = [" Moelf <jerryling315@gmail.com>" ]
4- version = " 0.1.4 "
4+ version = " 0.1.5 "
55
66[deps ]
77HTTP = " cd3eb016-35fb-5094-929b-558a96fad6f3"
88JSON = " 682c06a0-de6a-54ab-a142-c8b1cf79cde6"
99
1010[compat ]
11+ HTTP = " 1.10"
12+ JSON = " 0.21"
1113julia = " 1"
1214
1315[extras ]
You can’t perform that action at this time.
0 commit comments