Skip to content

Commit db91085

Browse files
authored
Don't specify arch in ci matrix (#464)
1 parent 0b586c4 commit db91085

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
test:
3232
needs: pre_job
3333
if: needs.pre_job.outputs.should_skip != 'true'
34-
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
34+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }}
3535
runs-on: ${{ matrix.os }}
3636
continue-on-error: ${{ matrix.version == 'nightly' }}
3737
strategy:
@@ -45,14 +45,11 @@ jobs:
4545
- ubuntu-latest
4646
- macOS-latest
4747
- windows-latest
48-
arch:
49-
- x64
5048
steps:
5149
- uses: actions/checkout@v4
5250
- uses: julia-actions/setup-julia@v2
5351
with:
5452
version: ${{ matrix.version }}
55-
arch: ${{ matrix.arch }}
5653
- uses: actions/cache@v4
5754
env:
5855
cache-name: cache-artifacts

0 commit comments

Comments
 (0)