build(deps): bump golang.org/x/crypto from 0.29.0 to 0.30.0 #93
Workflow file for this run
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: Run Tests | |
on: [push, workflow_dispatch] | |
jobs: | |
qualitycheck: | |
name: Quality Check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
check-latest: true | |
- name: Lint code | |
uses: golangci/golangci-lint-action@v4 | |
with: | |
version: "v1.56.2" | |
args: --verbose | |
- name: Audit code | |
run: | | |
make audit | |
test: | |
name: Test | |
needs: qualitycheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
check-latest: true | |
- name: Run tests | |
run: make test | |
- name: Generate coverage report | |
run: make test/cover | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
slug: vwhitteron/gt-telemetry |