Skip to content

Commit

Permalink
update to run in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkruger committed Dec 2, 2024
1 parent 4b54194 commit 5dc29c7
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 5dc29c7

Please sign in to comment.