Skip to content

Commit

Permalink
Add github action for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechos committed Sep 3, 2024
1 parent ec2f145 commit 51cddb0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run Tests

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

jobs:
test:
name: Run Go Tests
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'

- name: Install dependencies
run: go mod download

- name: Run performance tests
run: go test -v -timeout 5m ./tests/performance

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

0 comments on commit 51cddb0

Please sign in to comment.