Skip to content

chore(deps): bump golang.org/x/crypto from 0.22.0 to 0.23.0 #209

chore(deps): bump golang.org/x/crypto from 0.22.0 to 0.23.0

chore(deps): bump golang.org/x/crypto from 0.22.0 to 0.23.0 #209

Workflow file for this run

name: Continuous Integration
on:
push:
branches: ["main", "stable"]
pull_request:
branches: ["main", "stable"]
jobs:
lint:
name: Lint Code
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
cache: false
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: "v1.55"
config: .golangci.yml
test:
name: Run Tests
runs-on: ubuntu-latest
needs: lint
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./... -race -cover -timeout 30s -count 1