diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2141893..ad89ef5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -12,14 +12,17 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - name: Set up Go 1.x + - name: Set up Go 1.8 uses: actions/setup-go@v2 with: - go-version: ^1.18 + go-version: 1.18 id: go - name: Check out code into the Go module directory uses: actions/checkout@v2 + - name: mod download + run: go mod tidy + - name: Test run: go test -v . \ No newline at end of file