This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
Fix: show charging emoji during charging #240
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: Coverage Testing on public beta of Ubuntu 24.04 | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- 'README.md' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- 'README.md' | |
jobs: | |
coverage-test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: configure | |
run: ./configure --enable-code-coverage | |
- name: build | |
run: make -j | |
- name: check | |
run: make check | |
- name: gcov | |
run: make gcov | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |