Skip to content

Commit

Permalink
Move E2E and Cometmock to dedicated workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bermuell committed Aug 9, 2023
1 parent cfa3b24 commit b4de586
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 34 deletions.
28 changes: 0 additions & 28 deletions .github/workflows/automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,31 +28,3 @@ jobs:
run: make proto-check
- name: Unit, integration and difference tests
run: go test ./...
E2E_Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Checkout LFS objects
run: git lfs checkout
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: E2E tests
run: make test-e2e-short
Cometmock_Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Checkout LFS objects
run: git lfs checkout
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: E2E tests
run: make test-e2e-short-cometmock
23 changes: 17 additions & 6 deletions .github/workflows/e2e-happy-path.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ on:
- release/v*
- feat/*
jobs:
e2e-happy-path:
E2E_Tests:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
with:
lfs: true
Expand All @@ -23,8 +22,20 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.20" # The Go version to download (if necessary) and use.
- name: Proto Check
run: make proto-check
go-version: "1.20"
- name: E2E tests
run: make test-e2e-short
run: make test-e2e-short
Cometmock_Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Checkout LFS objects
run: git lfs checkout
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: E2E tests
run: make test-e2e-short-cometmock

0 comments on commit b4de586

Please sign in to comment.