Skip to content

Commit

Permalink
test: add gha workflow for integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
IronCore864 committed Sep 18, 2024
1 parent bf21bdb commit e8f37b2
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Integration Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
go: ['1.22']

name: Go ${{ matrix.go }}

steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

- name: Integration test
run: go test -count=1 -tags=integration ./tests/

0 comments on commit e8f37b2

Please sign in to comment.