Skip to content

Commit

Permalink
further improve e2e test and run it in GH action
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Ramlot <42113979+inteon@users.noreply.github.com>
  • Loading branch information
inteon committed Jan 11, 2024
1 parent 55118e1 commit 2a0a89a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml → .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: build
name: tests

on:
pull_request:
Expand All @@ -8,7 +8,7 @@ permissions:
contents: read

jobs:
build:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -17,3 +17,13 @@ jobs:
go-version: 1.21
cache: true
- run: go test -v ./...

e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: 1.21
cache: true
- run: ./test-e2e.sh
File renamed without changes.

0 comments on commit 2a0a89a

Please sign in to comment.