Skip to content

Commit 3628a61

Browse files
kdw503claude
andauthored
Apply runic formatting (#25)
* Apply runic formatting Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Update CI, TagBot config, and compat bounds - Use 'min' instead of '1.1' for minimum Julia version in CI - Upgrade setup-julia action to v2 - Simplify TagBot to use TAGBOT_TOKEN secret - Widen compat for RegisterCore, RegisterMismatchCommon, and julia to 1.10+ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Skip tests gracefully when no CUDA device is available Replaces hard error with a warning + early exit so CI on CPU-only runners passes instead of failing with a missing libcuda error. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Fix tests for RegisterCore v1: indmin_mismatch → argmin_mismatch RegisterCore v1.0 renamed indmin_mismatch to argmin_mismatch. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * Upgrade codecov-action to v5 and add CODECOV_TOKEN Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 84e8d11 commit 3628a61

6 files changed

Lines changed: 209 additions & 191 deletions

File tree

.github/workflows/CI.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
version:
16-
- '1.1'
16+
- 'min'
1717
- '1'
1818
# - 'nightly'
1919
os:
@@ -22,7 +22,7 @@ jobs:
2222
- x64
2323
steps:
2424
- uses: actions/checkout@v2
25-
- uses: julia-actions/setup-julia@v1
25+
- uses: julia-actions/setup-julia@v2
2626
with:
2727
version: ${{ matrix.version }}
2828
arch: ${{ matrix.arch }}
@@ -41,6 +41,7 @@ jobs:
4141
- uses: julia-actions/julia-buildpkg@v1
4242
- uses: julia-actions/julia-runtest@v1
4343
- uses: julia-actions/julia-processcoverage@v1
44-
- uses: codecov/codecov-action@v1
44+
- uses: codecov/codecov-action@v5
4545
with:
4646
file: lcov.info
47+
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/TagBot.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,5 @@ jobs:
2828
steps:
2929
- uses: JuliaRegistries/TagBot@v1
3030
with:
31-
token: ${{ secrets.GITHUB_TOKEN }}
32-
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
33-
ssh: ${{ secrets.DOCUMENTER_KEY }}
34-
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
31+
token: ${{ secrets.TAGBOT_TOKEN }}
3532
registry: HolyLab/HolyLabRegistry

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ SharedArrays = "1a1011a3-84de-559e-8e89-a11a2f7dc383"
1515
CUDA = "3,4,5"
1616
ImageCore = "0.8.1, 0.9, 0.10"
1717
Primes = "0.4, 0.5"
18-
RegisterCore = "0.2"
19-
RegisterMismatchCommon = "0.2.2"
20-
julia = "1"
18+
RegisterCore = "0.2, 1"
19+
RegisterMismatchCommon = "0.2.2, 1"
20+
julia = "1.10"
2121

2222
[extras]
2323
CenterIndexedArrays = "46a7138f-0d70-54e1-8ada-fb8296f91f24"

0 commit comments

Comments
 (0)