forked from JuliaPluto/PlutoUI.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 895 Bytes
/
Test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Julia tests
on:
workflow_dispatch:
push:
paths-ignore:
- '**.md'
branches:
- main
pull_request:
paths-ignore:
- '**.md'
jobs:
test:
runs-on: ${{ matrix.os }}
# Uncomment if you want to see all results for all OSses. Otherwise, the first failed test cancels all others
# continue-on-error: true
strategy:
matrix:
julia-version: ['1.6', '1.7', '1']
os: [ubuntu-latest]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-runtest@v1