Skip to content

Add Go workflow

Add Go workflow #1

Workflow file for this run

name: Go
on:
pull_request:
types:
- opened
- synchronize
- reopened
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
- name: Install dependencies
run: go get .
- name: Test
run: go test ./...