From 5dc29c75e51d9cc3ce0a226c4e06f5e49418ec1e Mon Sep 17 00:00:00 2001 From: Kevin Kruger Date: Mon, 2 Dec 2024 14:32:02 -0500 Subject: [PATCH] update to run in parallel --- .github/workflows/main.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9e001971..ceec617e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,13 +6,11 @@ on: pull_request jobs: - Run_Tests: + Run_Go_Tests: runs-on: ubuntu-latest steps: - # Checkout the code - name: Checkout uses: actions/checkout@v4 - # Run Go Tests - name: Set up Go uses: actions/setup-go@v4 with: @@ -21,7 +19,12 @@ jobs: run: go mod tidy - name: Run tests run: go test ./... -coverprofile=coverage.out - # Test the Github Action E2E + + Run_E2E_Tests: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 - name: Find LaunchDarkly feature flags in diff uses: ./ # Uses an action in the root directory id: find-flags