Skip to content

update go and go-sdk version #67

update go and go-sdk version

update go and go-sdk version #67

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
golangci:
name: Linting
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: '1.21'
- name: tidy
run: go mod tidy
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
# Caching conflicts happen in GHA, so just disable for now
skip-pkg-cache: true
skip-build-cache: true
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.54
args: --timeout 3m0s
unit-tests:
name: Unit Tests
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: '1.21'
- name: tidy
run: go mod tidy
- name: Run Test Scripts
run: |
make gha