Skip to content

Commit

Permalink
Fixes to when gh actions run.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmccully committed Mar 3, 2025
1 parent 2f34094 commit 0127267
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 79 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,8 @@ concurrency: ${{ github.workflow }}-${{ github.ref }}

on:
push:
branches:
- "**"
tags:
- "*"
pull_request:
branches:
- master

jobs:
build-push:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/codestyle.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Code Style

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
branches:
- '*'

jobs:
build:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Coverage

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
branches:
- '*'

jobs:
build:
Expand Down
59 changes: 0 additions & 59 deletions .github/workflows/docker_image.yml

This file was deleted.

5 changes: 2 additions & 3 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Docs

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
branches:
- '*'

jobs:
build:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: E2E Tests

on:
workflow_dispatch: {}
push: {}
pull_request:
branches:
- '*'

jobs:
test:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name: Build/Test
name: Unit Tests

on:
push:
branches: [main]
pull_request:
branches: [main]
branches:
- '*'

jobs:
linuxtest:
Expand Down

0 comments on commit 0127267

Please sign in to comment.