Add a cover page to the test report #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Unit Tests | |
| on: [push, pull_request] | |
| 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 tcl tcllib expect 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: python3 self_test/run.py | |
| - name: Run Unit Tests | |
| run: python3 9pm.py --option cmdl-supplied unit_tests/auto.yaml | |
| - name: Publish Test Result | |
| run: cat ~/.local/share/9pm/logs/last/result-gh.md >> $GITHUB_STEP_SUMMARY | |
| - name: Generate Test Report | |
| run: | | |
| asciidoctor-pdf \ | |
| --theme report/theme.yml \ | |
| -a pdf-fontsdir=report/fonts \ | |
| ~/.local/share/9pm/logs/last/report.adoc \ | |
| -o ~/.local/share/9pm/logs/last/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 |