Skip to content

Commit c15a31d

Browse files
Add setup-julia step to FormatCheck workflow
The runic-action requires Julia to be available on the runner. On self-hosted runners Julia may not be in PATH, causing the format check to fail. Adding setup-julia ensures Julia is available. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 7dfca85 commit c15a31d

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/FormatCheck.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@v6
17+
- uses: julia-actions/setup-julia@v2
18+
with:
19+
version: '1'
1720
- uses: fredrikekre/runic-action@v1
1821
with:
1922
version: '1'

0 commit comments

Comments
 (0)