Tests: 1175 ci refactor e2e #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E HappyPath Tests | |
on: | |
push: | |
branches: | |
- main | |
- release/v* | |
- feat/* | |
pull_request: | |
branches: | |
- main | |
- release/v* | |
- feat/* | |
jobs: | |
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 |