diff --git a/.github/workflows/ci-pre.yml b/.github/workflows/ci-pre.yml index ccef51877..2ab1221af 100644 --- a/.github/workflows/ci-pre.yml +++ b/.github/workflows/ci-pre.yml @@ -14,7 +14,8 @@ on: push: branches: - master - tags: '*' + tags: + - '*' jobs: test: name: Julia pre - ubuntu-latest - x64 - ${{ github.event_name }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc666700a..85c25f071 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,10 +14,11 @@ on: push: branches: - master - tags: '*' + tags: + - '*' jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -28,19 +29,13 @@ jobs: os: - ubuntu-latest - macos-latest + - macos-15-intel - windows-latest - arch: - - x64 - include: - - version: '1' - os: macos-latest - arch: aarch64 steps: - uses: actions/checkout@v6 - uses: julia-actions/setup-julia@v2 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1