mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
35 lines
953 B
YAML
35 lines
953 B
YAML
name: Code coverage report
|
|
on:
|
|
- push
|
|
- pull_request
|
|
|
|
jobs:
|
|
coverage:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v4
|
|
- name: Install deps
|
|
shell: bash
|
|
run: |
|
|
./.github/scripts/install_deps.sh ubuntu
|
|
- name: Install LCOV
|
|
run: |
|
|
sudo apt-get install lcov
|
|
- name: Install test dependency dependencies
|
|
shell: bash
|
|
run: |
|
|
test/fetch-test-deps.sh --get-deps ubuntu
|
|
- name: Generate coverage report
|
|
run: |
|
|
contrib/coverage.bash ubuntu-ci
|
|
- name: Upload coverage report
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: coverage-report
|
|
# Workaround for keeping the top-level coverage/ directory
|
|
# https://github.com/actions/upload-artifact/issues/174
|
|
path: |
|
|
coverage
|
|
dummy-file-to-keep-directory-structure.txt
|