This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
94 lines (79 loc) · 2.46 KB
/
tests.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
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
name: Tests
on: [pull_request]
jobs:
compil-check-job-run:
runs-on: ubuntu-latest
outputs:
workflows: ${{ steps.filter.outputs.workflows }}
src: ${{ steps.filter.outputs.src }}
make: ${{ steps.filter.outputs.make }}
package: ${{ steps.filter.outputs.package }}
stack: ${{ steps.filter.outputs.stack }}
combined: ${{ steps.filter.outputs.workflows == 'true' || steps.filter.outputs.src == 'true' || steps.filter.outputs.make == 'true' }} || steps.filter.outputs.package == 'true' || steps.filter.outputs.stack == 'true'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check modified files need re run
id: filter
uses: dorny/paths-filter@v2
with:
filters: |
workflows:
- '.github/workflows/**'
src:
- '*.hs'
make:
- 'Makefile'
package:
- 'package.yaml'
stack:
- 'stack.yaml'
tests:
runs-on: ubuntu-latest
needs: [compil-check-job-run]
if: needs.compil-check-job-run.outputs.combined
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Haskell
uses: haskell-actions/setup@v2
with:
enable-stack: true
stack-version: 'latest'
- name: Install dependencies
run: sudo ./scripts/InstallDepsLinux.bash
- name: Compil
run: make
- name: Tests
id: failedTest
run: |
if ! stack test &> tests.log; then
echo "failedTest=true" >> $GITHUB_OUTPUT
else
echo "failedTest=false" >> $GITHUB_OUTPUT
fi
- name: Upload stats
uses: actions/upload-artifact@v3
with:
name: tests.log
path: tests.log
- name: Send Test Ok
uses: mshick/add-pr-comment@v2
if: steps.failedTest.outputs.failedTest == 'false'
with:
message: "Tests PASSED"
refresh-message-position: true
message-id: tests-cicd
- name: Send Test KO
uses: mshick/add-pr-comment@v2
if: steps.failedTest.outputs.failedTest == 'true'
with:
message-path: |
tests.log
refresh-message-position: true
message-id: tests-cicd
- name: Exit Status
run: |
if [ ${{ steps.failedTest.outputs.failedTest }} == 'true' ]; then
exit 1
fi