diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 67075467dd..7c77e02d96 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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