Skip to content

ci(github-actions): add a step to build a release on a tag event #107

ci(github-actions): add a step to build a release on a tag event

ci(github-actions): add a step to build a release on a tag event #107

Workflow file for this run

name: Tests
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
- name: Install dependencies
run: go get .
- name: Test
run: go test -v ./...