diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21bad162..205120ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,6 +42,23 @@ jobs: name: Test runs-on: ubuntu-latest timeout-minutes: 30 + steps: + - name: Check out + uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v1 + with: + go-version: 1.16 + + - name: Test + run: | + make test + + integration: + name: Integration + runs-on: ubuntu-latest + timeout-minutes: 30 steps: - name: Check out uses: actions/checkout@v2 @@ -69,10 +86,6 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Test - run: | - make test - - name: Integration test run: | make integration @@ -83,4 +96,4 @@ jobs: with: report_paths: "tests/*.xml" github_token: ${{ secrets.GITHUB_TOKEN }} - check_name: "Test Report" + check_name: "Report"