-
Notifications
You must be signed in to change notification settings - Fork 4
65 lines (51 loc) · 1.61 KB
/
main.yml
File metadata and controls
65 lines (51 loc) · 1.61 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
name: Unit Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.x'
- name: Install pip
run: |
python -m pip install --upgrade pip
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y ruby ruby-dev build-essential
pip install pyyaml
gem install --user-install asciidoctor-pdf
gem install --user-install rouge
echo "PATH=$PATH:$(ruby -e 'puts Gem.user_dir')/bin" >> $GITHUB_ENV
- name: Run Self Tests
run: make check
- name: Run Unit Tests
run: make test
- name: Pretty Print JSON Results
run: |
echo "## Test Results JSON" >> $GITHUB_STEP_SUMMARY
echo '```json' >> $GITHUB_STEP_SUMMARY
python3 -m json.tool ~/.local/share/9pm/logs/last/result.json >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- name: Generate GitHub Test Result
run: make report-github
- name: Publish GitHub Report
run: cat ~/.local/share/9pm/logs/last/result-gh.md >> $GITHUB_STEP_SUMMARY
- name: Generate PDF Test Report
run: make report-pdf
- name: Upload Logs as Artifacts
uses: actions/upload-artifact@v4
with:
name: 9pm-logs
path: ~/.local/share/9pm/logs
- name: Upload Test Report as Artifact
uses: actions/upload-artifact@v4
with:
name: test-report
path: ~/.local/share/9pm/logs/last/report.pdf