Skip to content

Commit

Permalink
Add gha to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sysread committed Oct 24, 2024
1 parent b6576f3 commit ee102bb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

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

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

0 comments on commit ee102bb

Please sign in to comment.