diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 75d36d4..5422872 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,11 +14,25 @@ jobs: fail-fast: false matrix: julia-version: ['1.0', '1.6', '1', 'nightly'] - julia-arch: [x64, x86] - os: [ubuntu-latest, macOS-latest, windows-latest] + julia-arch: [x64, x86, aarch64] + os: [ubuntu-latest, windows-latest, macOS-13, macOS-14] exclude: - - os: macOS-latest - julia-arch: x86 + - os: ubuntu-latest + arch: aarch64 + - os: windows-latest + arch: aarch64 + - os: macOS-13 + arch: x86 + - os: macOS-13 + arch: aarch64 + - os: macOS-14 + arch: x86 + - os: macOS-14 + arch: x64 + - os: macOS-14 + version: '1.6' + - os: macOS-14 + version: '1.0' steps: - name: Set git to use LF (Windows only) @@ -42,3 +56,4 @@ jobs: - uses: codecov/codecov-action@v4 with: file: lcov.info + token: ${{ secrets.CODECOV_TOKEN }}