From 519bb0a4172dd862439ec9ead8b57d22ebc6db70 Mon Sep 17 00:00:00 2001 From: softwaredevelop <61334390+softwaredevelop@users.noreply.github.com> Date: Thu, 15 Aug 2024 19:22:20 +0200 Subject: [PATCH] refactor: Remove code-quality workflow --- .github/workflows/code-quality.yml | 52 ------------------------------ 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/code-quality.yml diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml deleted file mode 100644 index 7e09a27..0000000 --- a/.github/workflows/code-quality.yml +++ /dev/null @@ -1,52 +0,0 @@ ---- -name: code-quality - -run-name: Code quality - -on: - pull_request: - branches: - - "main" - -concurrency: - group: ${{ github.ref }}-${{ github.workflow }} - cancel-in-progress: true - -jobs: - skip-duplicate-actions: - name: Skip Duplicate Actions - runs-on: ubuntu-latest - steps: - - uses: fkirc/skip-duplicate-actions@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - cancel_others: true - concurrent_skipping: never - - code_quality: - name: Code quality - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Setup Go latest - uses: actions/setup-go@v5 - with: - go-version: stable - - - name: Download dependencies - run: | - go mod download - working-directory: cc - - - name: Run Dagger - uses: dagger/dagger-for-github@v5 - with: - args: go run -v . - dagger-flags: --debug - verb: run - version: latest - workdir: cc