-
-
Notifications
You must be signed in to change notification settings - Fork 292
32 lines (27 loc) · 1.21 KB
/
LaunchTest.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
name: Launch test
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on: workflow_dispatch
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
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:
# We test quite a lot of versions because we do some OS and version specific things unfortunately
julia-version: ["lts", "1"]
os: [windows-latest, ubuntu-latest]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
# Makes thes `julia` command available
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
# 🚗
- name: Test launch Pluto
run: |
echo "hello world"
julia ${{ github.workspace }}/test/run_notebook.jl ${{ github.workspace }}