Timecop: unmark X.509 certificate data #439
This file contains 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: Linux user space CI | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install meson | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y meson gcovr doxygen graphviz | |
- name: Meson setup | |
run: meson setup build -Db_coverage=true | |
- name: Meson compile | |
run: meson compile -C build | |
- name: Meson test | |
run: meson test -C build | |
- name: Generate test coverage report | |
run: ninja coverage-html -C build | |
- name: Archive code coverage results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-report | |
path: build/meson-logs/coveragereport |