-
-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (40 loc) · 1.19 KB
/
test.yml
File metadata and controls
55 lines (40 loc) · 1.19 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test-3_1_3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pandoc/actions/setup@v1
with:
version: 3.1.3
- name: Run alerts-normalize tests (Pandoc)
run: make test-pandoc
- name: Run alerts-normalize tests (Quarto format)
run: make test-quarto
- name: Run alerts-normalize roundtrip tests
run: make test-roundtrip
test-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pandoc/actions/setup@v1
- name: Run alerts-normalize tests (Pandoc)
run: make test-pandoc
- name: Run alerts-normalize tests (Quarto format)
run: make test-quarto
- name: Run alerts-normalize roundtrip tests
run: make test-roundtrip
test-quarto:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: quarto-dev/quarto-actions/setup@v2
- name: Run alerts-normalize tests (Quarto + pandoc-format)
run: make test-quarto-pandoc
- name: Run alerts-normalize roundtrip tests
run: make test-roundtrip