Skip to content

Bump actions/checkout from 5 to 6 (#185) #257

Bump actions/checkout from 5 to 6 (#185)

Bump actions/checkout from 5 to 6 (#185) #257

Workflow file for this run

name: CI
on:
push:
branches: "master"
tags: ["*"]
pull_request:
release:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1'
- 'lts'
os:
- ubuntu-latest
- windows-latest
arch:
- x64
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- name: Cache artifacts
uses: julia-actions/cache@v2
- name: Build package
uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@latest
env:
# Loading MKL during the tests can create an environment variable for OpenMP that is visible after the tests (#130)
JULIA_TEST_CHECK_MUTATED_ENV: "false"