diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7f65d4f..79131c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,10 +43,10 @@ jobs: steps: - name: Install Go if: success() - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Run tests run: go test ./cmd -v -covermode=count diff --git a/.goreleaser.yml b/.goreleaser.yml index 5b0870b..4dd27e1 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,27 +1,26 @@ before: - hooks: - - go mod tidy + hooks: + - go mod tidy - builds: - - env: - - CGO_ENABLED=0 - binary: sql-jobber - goos: - - windows - - darwin - - linux - - freebsd - - openbsd - - netbsd - goarch: - - amd64 - dir: ./cmd/ - - archives: - - format: tar.gz - rlcp: true - files: - - config.toml.sample - - README.md - - LICENSE - \ No newline at end of file +builds: + - env: + - CGO_ENABLED=0 + binary: sql-jobber + goos: + - windows + - darwin + - linux + - freebsd + - openbsd + - netbsd + goarch: + - amd64 + dir: ./cmd/ + +archives: + - format: tar.gz + rlcp: true + files: + - config.toml.sample + - README.md + - LICENSE