Skip to content

Commit

Permalink
github: Remove redundant backend workflow
Browse files Browse the repository at this point in the history
We already build and test the backend in backend-test workflow.
(and also in the app ones, and container test)

Signed-off-by: René Dudfield <renedudfield@microsoft.com>
  • Loading branch information
illume committed Jul 2, 2024
1 parent 58bc4de commit 47d8325
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 49 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/backend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
pull_request:
paths:
- 'backend/**'
- '.github/workflows/backend-test.yml'
push:
branches:
- main
Expand Down Expand Up @@ -44,6 +45,19 @@ jobs:
minikube addons enable headlamp
kubectl wait deployment -n headlamp headlamp --for condition=Available=True --timeout=30s
- 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
- name: Run tests and calculate code coverage
run: |
cd backend
Expand Down
49 changes: 0 additions & 49 deletions .github/workflows/backend.yml

This file was deleted.

0 comments on commit 47d8325

Please sign in to comment.