Skip to content

Commit

Permalink
Add GHA tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ferminhg committed Dec 25, 2023
1 parent 402adf0 commit c19f8f9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Tests
on: [push]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go get .
- name: Run tests
run: make test

0 comments on commit c19f8f9

Please sign in to comment.