Skip to content

Commit

Permalink
ci: add go test workflow for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
danny-molnar committed Mar 26, 2024
1 parent a1102e9 commit e756a1a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci-go-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Go Tests on PR

on:
pull_request:
branches:
- main

jobs:
tests:
name: Run Go Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22

- name: Run tests:
run: go test ./...

0 comments on commit e756a1a

Please sign in to comment.