Skip to content

Commit

Permalink
feat: Add initial github action
Browse files Browse the repository at this point in the history
This enables a github action which simply runs all the tests, including
the slow ones.
  • Loading branch information
DavePearce committed Jun 13, 2024
1 parent 0369459 commit 00399d7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Tests

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

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '>=1.20'
- run: make test

0 comments on commit 00399d7

Please sign in to comment.