diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a35e13..207e98d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: fetch-depth: 1 - uses: WillAbides/setup-go-faster@v1.14.0 with: - go-version: latest + go-version: stable - name: Staticcheck uses: dominikh/staticcheck-action@v1.4.0 with: diff --git a/foo.go b/foo.go index 7e985c4..e8abac9 100644 --- a/foo.go +++ b/foo.go @@ -1,4 +1,9 @@ package pkg +import "time" + func Fn() { -} \ No newline at end of file + time.Parse("123", "456") +} + +func whatever() {} \ No newline at end of file