This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
Bump golang.org/x/crypto from 0.0.0-20220525230936-793ad666bf5e to 0.17.0 #640
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: Test Coverage | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
codecov: | |
name: Measure Code Test Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.18' | |
- name: Install Required Dependencies | |
run: | | |
echo "Installing dependencies" | |
sudo apt-get install gcc libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0 aubio-tools libaubio-dev libaubio-doc | |
- name: Run coverage | |
run: go test -coverpkg=./... -race -coverprofile=coverage.out -covermode=atomic ./... | |
- name: Upload coverage to Codecov | |
if: always() | |
run: bash <(curl -s https://codecov.io/bash) |