From 9c1fe75ac8fa6709e13a52b39b9517c0f1bafcb7 Mon Sep 17 00:00:00 2001 From: "Viral B. Shah" Date: Tue, 27 Feb 2024 11:17:46 -0500 Subject: [PATCH] Update CI for aarch64, codecov 4 token --- .github/workflows/test.yml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) 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 }}