From 02bbd21ab975702c10034db43651b82334613ee2 Mon Sep 17 00:00:00 2001 From: Braydon Date: Sun, 6 Aug 2023 01:32:17 -0400 Subject: [PATCH] fix workflow? --- .gitea/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 2af1967..1f26523 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,5 +1,5 @@ name: checks -on: +on: - push - pull_request @@ -17,20 +17,20 @@ jobs: id: cache-go-path uses: https://github.com/actions/cache@v3 with: - path: /go_path + path: $HOME/go_path key: go_path-${{ github.repository }}-${{ github.ref_name }} restore-keys: | go_path-${{ github.repository }}- - go_path- + go_path- - name: cache go cache id: cache-go-cache uses: https://github.com/actions/cache@v3 with: - path: /go_cache + path: $HOME/go_cache key: go_cache-${{ github.repository }}-${{ github.ref_name }} restore-keys: | go_cache-${{ github.repository }}- - go_cache- + go_cache- - uses: actions/setup-go@v3 with: go-version: 1.20 @@ -40,4 +40,4 @@ jobs: - name: vet run: go vet - name: test - run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./... \ No newline at end of file + run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...