Skip to content

updating test file, adding build command #8

updating test file, adding build command

updating test file, adding build command #8

Workflow file for this run

name: Test
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
tests:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/[email protected]
with:
go-version: 1.21
- name: Install dependencies
run: |
go get .
- name: Run tests
run: go test -v ./...