Skip to content

try cache ci action with compiled #194

try cache ci action with compiled

try cache ci action with compiled #194

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
# julia-version: ['1', '^1.10.0-rc1', 'nightly']
julia-version: ['nightly']
# os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest]
arch: [x64, x86]
exclude:
- os: macOS-latest
arch: x86
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@71364c3a18c4cb9eaea35efa3ab757d9231fdd49
- uses: julia-actions/julia-runtest@v1
- name: Symlink depot to inside GITHUB_WORKSPACE
run: |
rm "$GITHUB_WORKSPACE/julia_depot"
ln -s "~/.julia" "$GITHUB_WORKSPACE/julia_depot"
ls "$GITHUB_WORKSPACE/julia_depot"
shell: bash
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
- uses: julia-actions/julia-processcoverage@v1