From 23eed6f86401f795aacd3bc4a0333a0acfe641ce Mon Sep 17 00:00:00 2001 From: Jared Allard Date: Thu, 18 Apr 2024 11:11:42 -0700 Subject: [PATCH] chore(ci): remove old workflow yaml --- .github/workflows/golangci-lint.yaml | 54 ---------------------------- 1 file changed, 54 deletions(-) delete mode 100644 .github/workflows/golangci-lint.yaml diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml deleted file mode 100644 index cb94488..0000000 --- a/.github/workflows/golangci-lint.yaml +++ /dev/null @@ -1,54 +0,0 @@ -name: tests -on: - push: - branches: - - main - pull_request: - -permissions: - contents: read - -concurrency: - group: stencil-build-${{ github.head_ref }} - cancel-in-progress: true - -jobs: - gotest: - name: go test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: jdx/mise-action@v2 - with: - experimental: true - env: - GH_TOKEN: ${{ github.token }} - - name: Run go test - run: | - gotestsum -f github-actions -- -coverprofile=cover.out ./... - - name: Upload test coverage - uses: codecov/codecov-action@v4.0.1 - with: - token: ${{ secrets.CODECOV_TOKEN }} - files: ./cover.out - fail_ci_if_error: true - - golangci-lint: - name: golangci-lint - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: jdx/mise-action@v2 - with: - experimental: true - env: - GH_TOKEN: ${{ github.token }} - - name: Retrieve golangci-lint version - run: | - echo "version=$(mise current golangci-lint)" >> "$GITHUB_OUTPUT" - id: golangci_lint - - name: golangci-lint - uses: golangci/golangci-lint-action@v3 - with: - version: v${{ steps.golangci_lint.outputs.version }} - args: --timeout=30m