diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a5ae19f..d4e05e0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,20 +1,20 @@ name: Test on: - pull_request: push: + branches: [ "**" ] jobs: - build: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: - go-version: 1.19 + go-version-file: 'go.mod' - name: Build run: go build -v ./...