Skip to content

build(deps): bump golang.org/x/crypto from 0.13.0 to 0.15.0 #19

build(deps): bump golang.org/x/crypto from 0.13.0 to 0.15.0

build(deps): bump golang.org/x/crypto from 0.13.0 to 0.15.0 #19

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@v4
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.11.4'
- '1.12'
- '1.13'
- '1.14'
- '1.15'
- '1.16'
- '1.17'
- '1.18'
- '1.19'
- '1.20'
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Download Go Modules
run: go mod download
- name: Run Tests
run: go test ./...