Skip to content

Commit

Permalink
feat: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Yeuoly committed Jul 19, 2024
1 parent c9dc8aa commit 708989b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run Tests

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

concurrency:
group: test-amd64-${{ github.head_ref || github.run_id }}
cancel-in-progress: true


jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Set up Golang 1.20
uses: actions/setup-go@v5
with:
go-version: 1.20

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

0 comments on commit 708989b

Please sign in to comment.