Skip to content

chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 #294

chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0

chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 #294

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: go mod download
- name: Run tests
run: make coverage
- name: Install goveralls
env:
GO111MODULE: "off"
run: go get github.com/mattn/goveralls
- name: Send coverage
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: goveralls -coverprofile=coverage.out -service=github -ignore=internal/**/*