Skip to content

Commit

Permalink
Create tests.yml
Browse files Browse the repository at this point in the history
run tests
  • Loading branch information
faddat authored Dec 22, 2024
1 parent 6480176 commit 58a57ab
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.23.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- run: go test ./...

0 comments on commit 58a57ab

Please sign in to comment.