diff --git a/.github/workflows/continuous_delivery.yaml b/.github/workflows/continuous_delivery.yaml index 58ccdaf18879fc64b8616c467b1be9a8e7cd19b7..1897561d8f113999c40f964129c256f82ebd8569 100644 --- a/.github/workflows/continuous_delivery.yaml +++ b/.github/workflows/continuous_delivery.yaml @@ -30,10 +30,10 @@ jobs: steps: - name: Setup uses: actions/setup-go@v2 - with: - go-version: '1.14' + - name: Checkout uses: actions/checkout@v2 + - name: Lint run: make lint @@ -43,14 +43,16 @@ jobs: steps: - name: Setup uses: actions/setup-go@v2 - with: - go-version: '1.14' + - name: Checkout uses: actions/checkout@v2 + - name: Build run: make build + - name: Test run: make testci + - name: Code coverage uses: codecov/codecov-action@v1 with: @@ -62,18 +64,20 @@ jobs: strategy: matrix: go_version: - - '1.11' - - '1.12' - '1.13' + - '1.14' steps: - name: Setup uses: actions/setup-go@v2 with: go-version: ${{matrix.go_version}} + - name: Checkout uses: actions/checkout@v2 + - name: Build run: make build + - name: Test run: make test