diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 803c1b8..8526edc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,27 +7,24 @@ on: tags: '*' jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} + name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - version: + julia-version: - 'lts' - '1' - 'nightly' os: - ubuntu-latest - - macOS-latest - windows-latest - arch: - - x64 + - macOS-latest steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 with: - version: ${{ matrix.version }} - arch: ${{ matrix.arch }} + version: ${{ matrix.julia-version }} - uses: actions/cache@v4 env: cache-name: cache-artifacts