-
-
Notifications
You must be signed in to change notification settings - Fork 106
41 lines (35 loc) · 803 Bytes
/
test.yml
File metadata and controls
41 lines (35 loc) · 803 Bytes
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
34
35
36
37
38
39
40
41
name: Tests
on:
push:
branches: [master]
paths:
- 'src/**/*.jl'
- '*.toml'
pull_request:
paths:
- 'src/**/*.jl'
- '*.toml'
jobs:
test:
name: Julia Tests
runs-on: [self-hosted, benchmark]
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: '1.10'
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-runtest@v1
- name: Upload test artifacts
if: always()
uses: actions/upload-artifact@v7
with:
name: test-results
path: |
html/Testing/
markdown/Testing/
notebook/Testing/
pdf/Testing/
script/Testing/
retention-days: 7