diff --git a/.github/workflows/Invalidations.yml b/.github/workflows/Invalidations.yml index 2e4dd31..bec61bc 100644 --- a/.github/workflows/Invalidations.yml +++ b/.github/workflows/Invalidations.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: julia-actions/setup-julia@v2 with: - version: '1' + version: '1.10' - uses: actions/checkout@v4 - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a760b54..8b699d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,22 +20,30 @@ jobs: fail-fast: false matrix: version: + - '1.6' # Previous LTS version + - '1.10' # Current LTS version - '1' # Current stable version os: + - macOS-latest - ubuntu-latest - windows-latest arch: - x64 include: + # macOS on aarch64 + - os: macOS-latest + arch: aarch64 + version: '1.6' + - os: macOS-latest + arch: aarch64 + version: '1.10' - os: macOS-latest arch: aarch64 version: '1' + - os: ubuntu-latest arch: x86 version: '1' - - os: ubuntu-latest - arch: x64 - version: '1.6' - os: ubuntu-latest arch: x64 version: 'nightly'