Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

Bump golang from 1.20.7-alpine to 1.21.0-alpine #163

Bump golang from 1.20.7-alpine to 1.21.0-alpine

Bump golang from 1.20.7-alpine to 1.21.0-alpine #163

Workflow file for this run

name: Build and test Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.7
- name: Checkout
uses: actions/checkout@v3.5.3
- name: Build
env:
GOPROXY: "https://proxy.golang.org"
run: go build ./...
# - name: Test
# env:
# GOPROXY: "https://proxy.golang.org"
# run: go test -v .
- name: Vet
run: go vet ./...
- uses: dominikh/staticcheck-action@v1.3.0
with:
version: latest
install-go: false