Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

ci: only run tests once on push to pr #1242

Merged
merged 2 commits into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/charmcraft-pack.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Charmcraft Pack Test

on: [push, pull_request, workflow_call]
on:
push:
branches:
- main
pull_request:

jobs:
charmcraft-pack:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/db-charm-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Data Charm Tests

on: [push, pull_request, workflow_call]
on:
push:
branches:
- main
pull_request:
workflow_call:

jobs:
db-charm-tests:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/framework-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: ops Tests

on: [push, pull_request, workflow_call]
on:
push:
branches:
- main
pull_request:
workflow_call:

jobs:
lint:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/hello-charm-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Hello Charm Tests

on: [push, pull_request, workflow_call]
on:
push:
branches:
- main
pull_request:
workflow_call:

jobs:
hello-charm-tests:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/observability-charm-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: Observability Charm Tests

on: [push, pull_request, workflow_call]
on:
push:
branches:
- main
pull_request:
workflow_call:

jobs:
o11y-charm-tests:
Expand Down
Loading