Skip to content

chore: Bump golang.org/x/crypto from 0.16.0 to 0.17.0 #26

chore: Bump golang.org/x/crypto from 0.16.0 to 0.17.0

chore: Bump golang.org/x/crypto from 0.16.0 to 0.17.0 #26

Workflow file for this run

name: go
on:
pull_request:
branches:
- development
- main
permissions:
contents: read
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Download Go Modules
run: go mod download
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.7.0
test:
name: Test Go@v${{ matrix.go-version }}
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- '1.18'
- '1.19'
- '1.20'
- '1.21'
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Download Go Modules
run: go mod download
- name: Run Tests
run: go test ./...