Bump golang.org/x/crypto from 0.12.0 to 0.17.0 #426
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: Go | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: Install depedencies | |
run: go install honnef.co/go/tools/cmd/staticcheck@latest | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -timeout 20m -v -run "TestCRDT" -race -coverprofile=coverage.txt -covermode=atomic | |
- name: Staticcheck | |
run: staticcheck ./... | |
- name: Send coverage | |
run: bash <(curl -s https://codecov.io/bash) | |
suite: | |
runs-on: ubuntu-latest | |
env: | |
GO111MODULE: on | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: Test | |
run: go test -timeout 30m -v -run "TestDatastoreSuite" . |