Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

ci: avoid duplicate builds on push, pull_request #1157

Merged
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
8 changes: 7 additions & 1 deletion .github/workflows/cxx-python.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: C++,Native Python

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

env:
ITKMeshToPolyData-git-tag: "v0.11.0"
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Browser Tests

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

defaults:
run:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Examples

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

jobs:
test-node-example:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/javascript-typescript.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Node.js Tests

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

defaults:
run:
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/python-wasm.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Python Wasm

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

env:
pyodide-version: 0.24.1
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/toolchains.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Toolchains

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

env:
OCI_EXE: docker
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/wasi.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: WASI

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

defaults:
run:
Expand Down
Loading