-
Notifications
You must be signed in to change notification settings - Fork 16
104 lines (92 loc) · 2.5 KB
/
examples.yml
File metadata and controls
104 lines (92 loc) · 2.5 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Examples
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
# This runs C tests using the Clar test framework
c-clar:
name: C / Clar
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build and test
run: |
make
./test -rresults/tests.xml
working-directory: c-clar
- name: Create test summary
uses: test-summary/action@v1
with:
paths: c-clar/results/**/*.xml
if: always()
# This runs .NET tests using the standard .NET test driver
dotnet:
name: .NET
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build and test
run: |
dotnet build
dotnet test --logger "junit;LogFilePath=results/tests.xml"
working-directory: dotnet
- name: Create test summary
uses: test-summary/action@v1
with:
paths: dotnet/results/**/*.xml
if: always()
# This runs Java tests using the JUnit test framework
java-junit:
name: Java / JUnit
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build and test
run: |
ant
working-directory: java-junit
- name: Create test summary
uses: test-summary/action@v1
with:
paths: java-junit/results/**/*.xml
if: always()
# This runs JavaScript tests using the Mocha test framework
javascript-mocha:
name: JavaScript / Mocha
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build and test
run: |
npm ci
npm run test
working-directory: javascript-mocha
- name: Create test summary
uses: test-summary/action@v1
with:
paths: javascript-mocha/results/**/*.xml
if: always()
# This runs JavaScript tests using the Node-Tap test framework
javascript-tap:
name: JavaScript / Node-Tap
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Build and test
run: |
npm ci
npm run test
working-directory: javascript-tap
- name: Create test summary
uses: test-summary/action@v1
with:
paths: javascript-tap/results/**/*.tap
if: always()