Skip to content

build(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0 #1459

build(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0

build(deps): bump golang.org/x/crypto from 0.27.0 to 0.31.0 #1459

Workflow file for this run

name: Run Go Tests
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '^1.22'
- name: Install golangci-lint
run: sudo snap install golangci-lint --classic
- name: Code formatting and linting
run: make ci-lint
- name: Run tests
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}