Skip to content
Merged
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
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
lint:
name: Lint & Format
runs-on: ubuntu-latest
if: github.ref_name != 'main'
steps:
- uses: actions/checkout@v4

Expand All @@ -25,6 +26,7 @@ jobs:
name: Tests
runs-on: ubuntu-latest
needs: lint
if: github.ref_name != 'main'
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -54,6 +56,7 @@ jobs:
name: Build Package
runs-on: ubuntu-latest
needs: test
if: github.ref_name != 'main'
steps:
- uses: actions/checkout@v4

Expand All @@ -73,7 +76,7 @@ jobs:
open-pr:
name: Open PR to main
runs-on: ubuntu-latest
needs: test
needs: [lint, test]
if: github.event_name == 'push' && github.ref_name != 'main'
permissions:
pull-requests: write
Expand Down Expand Up @@ -105,7 +108,6 @@ jobs:
docs:
name: Deploy Docs
runs-on: ubuntu-latest
needs: test
if: github.event_name == 'push' && github.ref_name == 'main'
permissions:
contents: write
Expand All @@ -127,7 +129,6 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
needs: test
if: github.event_name == 'push' && github.ref_name == 'main'
permissions:
contents: write
Expand Down
Loading