3 Commits

Author SHA1 Message Date
b321ba336a Version bump
All checks were successful
Build ptprnt / build (push) Successful in 2m7s
2025-10-16 21:23:59 +02:00
1144fb9803 Remove test step from the pipeline as dist target seems to run tests already 2025-10-16 21:23:33 +02:00
1a68502401 Add changelog, uniform naming, prepare v0.2.0 tagging
All checks were successful
Build ptprnt / build (push) Successful in 4m15s
2025-10-16 21:01:04 +02:00

View File

@@ -38,23 +38,15 @@ jobs:
echo "=== End dependency package version ==="
- name: setup builddir
run: meson setup builddir -Db_coverage=true
- name: run unit tests
run: ninja -C builddir test
- name: build and test dist package
run: ninja -C builddir dist
- name: calculate coverage
run: ninja -C builddir coverage-text
- name: Coverage report
run: cat ./builddir/meson-logs/coverage.txt
- name: build and test dist package
run: ninja -C builddir dist
- name: upload dist package
uses: actions/upload-artifact@v3
with:
name: ptprnt
name: ptprnt-dist
path: ./builddir/meson-dist/*
if-no-files-found: error
- name: upload coverage report
uses: actions/upload-artifact@v3
with:
name: coverage.txt
path: ./builddir/meson-logs/coverage.txt
if-no-files-found: error