Skip to content

updated project for releasing #5

updated project for releasing

updated project for releasing #5

Workflow file for this run

name: Go
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: subdir/go.sum
- name: Install Go dependencies
run: go get .
- name: Test with the Go CLI
run: go test