Skip to content

build(deps): bump golang.org/x/crypto from 0.25.0 to 0.26.0 #631

build(deps): bump golang.org/x/crypto from 0.25.0 to 0.26.0

build(deps): bump golang.org/x/crypto from 0.25.0 to 0.26.0 #631

Workflow file for this run

name: Test and Lint
on:
push:
branches:
- main
pull_request:
branches:
- "*"
permissions:
contents: read
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: actions/checkout@v4
- name: Install tools
run: make install-ci-tools
- name: Go Fmt
run: diff -u <(echo -n) <(gofmt -d ./)
shell: bash
- name: Go Test
run: make test
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest