From 4c293ccc02b60155a0d4d59e10a710c47eff65c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Dudfield?= Date: Tue, 2 Jul 2024 11:28:39 +0200 Subject: [PATCH] github: Remove redundant backend workflow We already build and test the backend in backend-test workflow. (and also in the app ones, and container test) --- .github/workflows/backend.yml | 49 ----------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 .github/workflows/backend.yml diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml deleted file mode 100644 index 7f21ea18e5c..00000000000 --- a/.github/workflows/backend.yml +++ /dev/null @@ -1,49 +0,0 @@ -name: Build Backend -on: - pull_request: - paths: - - 'backend/**' - - Makefile - - '.github/**' - push: - branches: - - main - - rc-* - - testing-rc-* - paths: - - 'backend/**' - - Makefile - - '.github/**' - -permissions: - contents: read - -jobs: - - build: - name: Lint & Build - runs-on: ubuntu-22.04 - - steps: - - - name: Set up Go - uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 - with: - go-version: '1.22.*' - id: go - - - name: Check out code - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - - name: setup and run golangci-lint - uses: golangci/golangci-lint-action@d6238b002a20823d52840fda27e2d4891c5952dc # v4.0.1 - with: - version: v1.54 - working-directory: backend - skip-cache: true - args: --timeout 3m - - - name: Lint, Build & Check - run: | - cd $GITHUB_WORKSPACE - make backend