diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9190165..7a03a5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,19 +7,19 @@ on: branches: [ "main" ] jobs: - lint: - name: Lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version: '1.23' - cache: false - - name: golangci-lint - uses: golangci/golangci-lint-action@v6 - with: - version: v2.8.0 +# lint: +# name: Lint +# runs-on: ubuntu-latest +# steps: +# - uses: actions/checkout@v4 +# - uses: actions/setup-go@v5 +# with: +# go-version: '1.23' +# cache: false +# - name: golangci-lint +# uses: golangci/golangci-lint-action@v6 +# with: +# version: v2.8.0 test: name: Test @@ -35,7 +35,7 @@ jobs: build: name: Build runs-on: ubuntu-latest - needs: [lint, test] + needs: [test] steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5