Skip to content

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

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

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

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.21.3"
cache: false
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: "v1.53"
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.21.3"
- name: Build
run: go build -v ./...
- name: Test
run: go run github.com/onsi/ginkgo/v2/ginkgo -v -r --randomize-all --randomize-suites --fail-on-pending --keep-going --cover --race --trace