Skip to content

Commit

Permalink
Run integration test with GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
aditsachde committed Jul 6, 2024
1 parent 5d3a327 commit 91ed3b1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Integration Test

on: [push]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v5
- name: Run integration test
working-directory: integration
run: go test -run ^TestCTIntegration$ -v

0 comments on commit 91ed3b1

Please sign in to comment.