Skip to content

Commit

Permalink
Merge pull request #43 from massalabs/add-test-ci
Browse files Browse the repository at this point in the history
Add unit test to CI
  • Loading branch information
pivilartisant authored Jul 24, 2024
2 parents c3520d7 + 60f9efd commit 7644fe6
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: tests

on:
push:
branches: [main]
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.22
cache: true
- name: Run unit tests
run: go test ./...

0 comments on commit 7644fe6

Please sign in to comment.