Skip to content

Bump actions/cache from 3.3.2 to 4.0.0 #65

Bump actions/cache from 3.3.2 to 4.0.0

Bump actions/cache from 3.3.2 to 4.0.0 #65

Workflow file for this run

name: TestLogger CI
on:
push:
branches:
- "main"
- "master"
pull_request:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- "1.6"
- "1" # automatically expands to the latest stable 1.x release of Julia
- nightly
os:
- ubuntu-latest
- macOS-latest
- windows-latest
arch:
- x64
- x86
# 32-bit Julia binaries are not available on macOS
exclude:
- os: macOS-latest
arch: x86
steps:
- name: Checkout julia-runtest
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: julia-actions/setup-julia@a1561e938c17e7aaf8236334d6d533e774c71dcd
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- run: julia --color=yes --check-bounds=yes test_logger_tests.jl