Skip to content

Commit

Permalink
Merge pull request #342 from tisnik/unified-github-workflow-declarations
Browse files Browse the repository at this point in the history
Unified GitHub workflow declarations
  • Loading branch information
tisnik authored Feb 2, 2025
2 parents 872687e + 8eca5dc commit 6cf20f4
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Integration tests

on: [push, pull_request]
on:
- push
- pull_request

jobs:
integration_tests:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pydocstyle.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Pydocstyle

on: [push, pull_request]
on:
- push
- pull_request

jobs:
pydocstyle:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/radon.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Radon

on: [push, pull_request]
on:
- push
- pull_request

jobs:
radon:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ruff.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Ruff
on: [ push, pull_request ]

on:
- push
- pull_request

jobs:
ruff:
runs-on: ubuntu-latest
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Unit tests

on: [push, pull_request]
on:
- push
- pull_request

jobs:
unit_tests:
Expand Down

0 comments on commit 6cf20f4

Please sign in to comment.