Skip to content

Bump golang.org/x/crypto from 0.21.0 to 0.31.0 in the go_modules group #559

Bump golang.org/x/crypto from 0.21.0 to 0.31.0 in the go_modules group

Bump golang.org/x/crypto from 0.21.0 to 0.31.0 in the go_modules group #559

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Build
run: make lint build
- name: Test
run: |
go test -v -covermode=count -coverprofile=coverage.out ./...
- name: Coverage
uses: jandelgado/[email protected]
- name: Coveralls
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: coverage.lcov