File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -12,25 +12,26 @@ concurrency:
1212 cancel-in-progress : ${{ startsWith(github.ref, 'refs/pull/') }}
1313jobs :
1414 test :
15- name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16- runs-on : ${{ matrix.os }}
15+ name : Julia ${{ matrix.version }} - ${{ matrix.platform. os }} - ${{ matrix.platform .arch }} - ${{ github.event_name }}
16+ runs-on : ${{ matrix.platform. os }}
1717 strategy :
1818 fail-fast : false
1919 matrix :
20+ platform :
21+ - os : ubuntu-latest
22+ arch : x64
23+ - os : ubuntu-24.04-arm
24+ arch : aarch64
2025 version :
2126 - ' 1.9'
2227 - ' 1'
2328 - ' nightly'
24- os :
25- - ubuntu-latest
26- arch :
27- - x64
2829 steps :
2930 - uses : actions/checkout@v4
3031 - uses : julia-actions/setup-julia@v2
3132 with :
3233 version : ${{ matrix.version }}
33- arch : ${{ matrix.arch }}
34+ arch : ${{ matrix.platform. arch }}
3435 - uses : julia-actions/cache@v2
3536 - uses : julia-actions/julia-buildpkg@v1
3637 - uses : julia-actions/julia-runtest@v1
You can’t perform that action at this time.
0 commit comments