Skip to content

workflow to run go test #1

workflow to run go test

workflow to run go test #1

Workflow file for this run

name: pr_ci
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Install dependencies
run: go get .
- name: Run tests
run: make test