Skip to content

Commit

Permalink
Merge pull request #433 from euanwm/chore/drop_circle_ci
Browse files Browse the repository at this point in the history
removed circleci references from workflows
  • Loading branch information
euanwm authored Mar 1, 2025
2 parents 2d26469 + 2c3263c commit ec47d10
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 18 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build

on:
push:
branches: [ "development", "master" ]
branches: ["development"]
pull_request:
branches: [ "development", "master" ]
branches: ["development"]

jobs:
build_frontend:
Expand Down Expand Up @@ -54,13 +54,6 @@ jobs:
cd backend/
go test -coverprofile=coverage.txt ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
files: /backend/coverage.txt
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}

build_tool:
runs-on: ubuntu-latest
strategy:
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,3 @@ jobs:
cd ../frontend/
npm install
npm run test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
files: frontend/coverage/cobertura-coverage.xml
verbose: true
token: ${{ secrets.CODECOV_TOKEN }}
4 changes: 2 additions & 2 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Pylint

on:
push:
branches: [ "development", "master"]
branches: ["development"]
pull_request:
branches: [ "development", "master"]
branches: ["development"]

jobs:
build:
Expand Down

0 comments on commit ec47d10

Please sign in to comment.