chore: removed unsused funding platform (#265) #635
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 | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main, release-*] | |
pull_request: | |
branches: [main, release-*] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
env: | |
DISPLAY: ':99' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libxtst-dev libevdev-dev libxdo-dev | |
version: 1.0 | |
- name: Setup headless environment | |
run: | | |
Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & | |
- name: Dependencies | |
run: | | |
sudo apt-get install libxtst-dev libevdev-dev libxdo-dev --assume-yes | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
# To only cache runs from `master` | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- run: rustup component add llvm-tools-preview | |
- name: Install grcov | |
run: cargo install grcov | |
- name: build | |
env: | |
RUSTFLAGS: -Cinstrument-coverage | |
run: cargo build --workspace --verbose | |
- name: test | |
env: | |
RUSTFLAGS: -Cinstrument-coverage | |
LLVM_PROFILE_FILE: name-%p-%m.profraw | |
run: cargo test --workspace --verbose | |
- name: Run grcov | |
run: | | |
mkdir coverage | |
grcov . \ | |
--binary-path ./target/debug/ \ | |
-s . \ | |
-t lcov \ | |
--branch \ | |
--ignore-not-existing \ | |
--ignore "/*" \ | |
--ignore "service/src/{main}.rs" \ | |
--excl-line "#\\[derive\\(" \ | |
-o ./coverage/lcov.info | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |