Skip to content

Update CI for mac aarch64, codecov 4 token #251

Update CI for mac aarch64, codecov 4 token

Update CI for mac aarch64, codecov 4 token #251

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches:
- master
tags: '*'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
julia-version: ['1.0', '1.6', '1', 'nightly']
julia-arch: [x64, x86, aarch64]
os: [ubuntu-latest, windows-latest, macOS-13, macOS-14]
exclude:
- os: ubuntu-latest
arch: aarch64

Check failure on line 21 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Run tests

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 21, Col: 13): Matrix exclude key 'arch' does not match any key within the matrix .github/workflows/test.yml (Line: 23, Col: 13): Matrix exclude key 'arch' does not match any key within the matrix
- 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)
if: matrix.os == 'windows-latest'
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Fix TEMP issue (Windows only) # See https://github.com/actions/virtual-environments/issues/712
if: matrix.os == 'windows-latest'
run: |
echo "TMP=${USERPROFILE}\AppData\Local\Temp" >> ${GITHUB_ENV}
echo "TEMP=${USERPROFILE}\AppData\Local\Temp" >> ${GITHUB_ENV}
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-runtest@latest
env:
JULIA_NUM_THREADS: 2
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}