Skip to content

Commit

Permalink
Merge pull request #1 from piqoni/tests
Browse files Browse the repository at this point in the history
tests pipeline
  • Loading branch information
piqoni authored Jun 2, 2024
2 parents cde3598 + 3bae26a commit 9057278
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Go tests

on:
pull_request:
branches: [ main ]
push:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.x
- name: Test
run: go test ./...

0 comments on commit 9057278

Please sign in to comment.