Skip to content

Bump cryptography from 40.0.1 to 41.0.2 in /infra/bb-worker #56

Bump cryptography from 40.0.1 to 41.0.2 in /infra/bb-worker

Bump cryptography from 40.0.1 to 41.0.2 in /infra/bb-worker #56

Workflow file for this run

name: Code Coverage
on: [push, pull_request, workflow_dispatch]
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go environment
uses: actions/setup-go@v4.0.0
with:
go-version: '1.19'
# Used to specify whether caching is needed. Set to true, if you'd like to enable caching.
cache: true
# Used to specify the path to a dependency file - go.sum
cache-dependency-path: go.sum
- name: Run coverage
run: |
go test -race -coverprofile=coverage.txt -covermode=atomic ./cmd/buildbot-app
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true