Skip to content

Commit

Permalink
Adds integration tests to workflows.
Browse files Browse the repository at this point in the history
Signed-off-by: JU4N98 <[email protected]>
  • Loading branch information
JU4N98 committed Jun 15, 2023
1 parent 8cde35e commit 58b4f66
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pr_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,20 @@ jobs:
- name: Run clean check
run: make git-clean-check

integration-tests:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- name: Build containers
run: ./build.sh
shell: bash
working-directory: ./it
- name: Run integration tests
run: ./integration_test.sh
shell: bash
working-directory: ./it

build:
name: build (linux)
runs-on: ubuntu-22.04
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/release_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ env:
GO_VERSION: 1.19.5

jobs:
integration-tests:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
- name: Build containers
run: ./build.sh
shell: bash
working-directory: ./it
- name: Run integration tests
run: ./integration_test.sh
shell: bash
working-directory: ./it

build:
name: build (linux)
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 58b4f66

Please sign in to comment.