Skip to content

Fix/william/inval handshake handle #599

Fix/william/inval handshake handle

Fix/william/inval handshake handle #599

Workflow file for this run

on: ["push", "pull_request"]
name: Test Coveralls
jobs:
build:
name: Build
runs-on: ubuntu-22.04
strategy:
matrix:
otp:
- 25.3.2
rebar3:
- 3.20.0
build_type:
- RelWithDebInfo
logging:
- false
arch:
- x86_64
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
rebar3-version: ${{ matrix.rebar3 }}
- name: Run cover
run: |
sudo apt-get install lcov
make cover
- name: Coveralls C
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-c-lcov
files: coverage/proper-lcov.info coverage/lcov.info
parallel: true
git-branch: ${{ github.ref_name }}
git-commit: ${{ github.sha }}
- name: Run cover with feature switches
run: |
sudo apt-get install lcov
export QUICER_USE_TRUSTED_STORE=1
make cover
- name: Coveralls C
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
flag-name: run-c-lcov-feature
files: coverage/proper-lcov.info coverage/lcov.info
parallel: true
git-branch: ${{ github.ref_name }}
git-commit: ${{ github.sha }}
- name: Coveralls Erl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: rebar3 as test coveralls send
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true