diff options
author | EuAndreh <eu@euandre.org> | 2024-12-11 08:33:01 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-12-11 08:33:01 -0300 |
commit | 754c72e7168bead660dc2027fdf8e3a257621f7a (patch) | |
tree | 33320610f7280c16f35b63a7141e754d62fa8c37 | |
parent | rm go.mod go.sum (diff) | |
download | urubu-754c72e7168bead660dc2027fdf8e3a257621f7a.tar.gz urubu-754c72e7168bead660dc2027fdf8e3a257621f7a.tar.xz |
rm .github/workflows/test.yml
-rw-r--r-- | .github/workflows/test.yml | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index ca0c729..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Test - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - - test: - name: go test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 - with: - go-version: 1.19 - - run: go test -v ./... - - lint: - name: golangci-lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-go@v3 - with: - go-version: 1.19 - - uses: golangci/golangci-lint-action@v3 - with: - version: latest - args: -E gofmt |