Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v2

# Pre-starting dependencies here means they are ready to go when we need them.
- name: Start Infra Dependencies
# Use & to background this
run: docker-compose up -d mysql_test redis mailhog saml_idp &

- name: JS Dependency Cache
id: js-cache
uses: actions/cache@v2
Expand Down Expand Up @@ -53,11 +58,6 @@ jobs:
if: steps.go-cache.outputs.cache-hit != 'true'
run: make deps-go

# Pre-starting dependencies here means they are ready to go when we need them.
- name: Start Infra Dependencies
# Use & to background this
run: docker-compose up -d mysql_test redis mailhog saml_idp &

- name: Build Fleet
run: |
export PATH=$PATH:~/go/bin
Expand Down