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
10 changes: 9 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
---
name: Push and Pull Request
on: [push, pull_request]
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'

jobs:
build:
runs-on: ubuntu-latest
# Skip duplicate runs on pull_request when the push event would also trigger.
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- uses: actions/setup-python@v6
with:
Expand Down