Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
cstub committed Jan 14, 2025
1 parent a55f431 commit 488044f
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/quality.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Quality Checks
name: Code Quality

on: workflow_dispatch # [push, pull_request]
on:
push: {}
pull_request:
branches: [main]

jobs:
quality:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Run Tests
name: Tests

on: workflow_dispatch #[push, pull_request]
on:
push: {}
pull_request:
branches: [main]

jobs:
test:
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/test_package.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
name: Test Package Installation

on: workflow_dispatch #[push, pull_request]
on:
push: {}
pull_request:
branches: [ main ]
workflow_run:
workflows: ["Code Quality", "Tests"]
types:
- completed

jobs:
build:
runs-on: ubuntu-latest

if: ${{ github.event.workflow_run.conclusion == 'success' }}

steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 488044f

Please sign in to comment.