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

Upgrade go version

Upgrade go version #5

Workflow file for this run

#name: Build 🛠️
#on:
# push:
# tags:
# - '*'
# branches:
# - '*'
#
#permissions:
# contents: write
#
#jobs:
# build:
# name: Go build 🚀
# runs-on: ubuntu-latest
# steps:
# - name: checkout
# uses: actions/checkout@v3
#
# - name: setup-go
# uses: actions/setup-go@v4
# with:
# go-version: '1.20'
# cache: false
#
# - name: security
# uses: securego/gosec@master
# with:
# args: -exclude=G204 ./...
#
# - name: lint
# uses: golangci/golangci-lint-action@v3
# with:
# version: latest
#
# - name: test
# run: go test -v ./...
#
# - name: build
# run: go build