Skip to content

Test go test actions #1

Test go test actions

Test go test actions #1

Workflow file for this run

name: Go Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22.4
- name: Check out code
uses: actions/checkout@v2
- name: Get dependencies
run: go mod download
- name: Run tests
run: go test ./...