Skip to content

Update golang Docker tag to v1.23.3 #159

Update golang Docker tag to v1.23.3

Update golang Docker tag to v1.23.3 #159

Workflow file for this run

name: test
on: push
jobs:
discotp:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: ./go.mod
cache: true
cache-dependency-path: ./go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.50
working-directory: ./
skip-pkg-cache: true
- name: Build Go binary
run: |-
make build
- name: Run Go Test
run: |-
make test