Skip to content

Bump golang.org/x/crypto from 0.11.0 to 0.12.0 #329

Bump golang.org/x/crypto from 0.11.0 to 0.12.0

Bump golang.org/x/crypto from 0.11.0 to 0.12.0 #329

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: "1.20"
id: go
- name: Set up Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Check out
uses: actions/checkout@v3
- name: Go mod download
run: go mod download
- name: Build
run: go build -v ./cmd/server
- name: Test
run: make test
- name: Golint
run: |
go install golang.org/x/lint/golint@latest
golint -set_exit_status ./...
- name: ESLint
run: |
npm i
npm run lint