Skip to content

Commit

Permalink
Merge pull request #12 from wader/github-action-test
Browse files Browse the repository at this point in the history
Add pr test action
  • Loading branch information
wader authored Dec 5, 2023
2 parents 36ef7fd + 754361e commit f2ebd0d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test

on:
push:
branches:
- master
pull_request:
# enable manual trigger
workflow_dispatch:

jobs:
test:
name: go test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: stable
- name:
run: go test ./...

0 comments on commit f2ebd0d

Please sign in to comment.