diff --git a/.github/workflows/workflow.yaml b/.github/workflows/workflow.yaml index 8fe1824..905af47 100644 --- a/.github/workflows/workflow.yaml +++ b/.github/workflows/workflow.yaml @@ -11,11 +11,17 @@ jobs: name: unit-tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@master - - name: Test - uses: cedrickring/golang-action/go1.14@1.5.2 + - name: Checkout + uses: actions/checkout@master + + - name: Set up Go + uses: actions/setup-go@v2 with: - args: make test + go-version: 1.14 + + - name: Test + run: make test + - name: Upload coverage to Codecov uses: codecov/codecov-action@v1 with: