Use gcov2lcov in an attempt to get files path correct for coveralls. #66
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: Platform Tests | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
platform_tests: | |
runs-on: ubuntu-latest | |
if: ${{ !github.event.pull_request.draft }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- uses: WillAbides/[email protected] | |
with: | |
go-version: '1.21' | |
- name: Get dependencies | |
run: | | |
sudo apt-get update && sudo apt-get install gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev | |
- uses: actions/setup-node@v4 | |
- name: Update coverage | |
run: | | |
set -e | |
export PLAYWRIGHT_NODEJS_PATH=$(which node) | |
go test -tags e2e -covermode=atomic -coverprofile=coverage.out ./... | |
coverage=`go tool cover -func coverage.out | grep total | tr -s '\t' | cut -f 3 | grep -o '[^%]*'` | |
if (( $(echo "$coverage < 63" | bc) )); then echo "Test coverage lowered"; fi | |
- name: Convert coverage to lcov | |
uses: jandelgado/[email protected] | |
- name: Update PR Coverage | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
file: coverage.lcov |