diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ce93ff7..d93c579 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -26,11 +26,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 + + - name: install required packages + run: | + apk --no-cache add openssl - name: go test run: | - apk --no-cache add openssl && \ go test -v -cover ...