Skip to content

Commit f106281

Browse files
committed
Add push-pull workflow
But turn off everything except the env update. My hope and expectation is that this will auto-populate the binder env file. We can slowly turn on other components as the repo can handle them. Signed-off-by: liamhuber <liamhuber@greyhavensolutions.com>
1 parent 052aa58 commit f106281

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/push-pull.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# This runs jobs which pyiron modules should run on pushes or PRs to main
2+
3+
name: Push-main-Pull-all
4+
5+
on:
6+
push:
7+
branches: [ main ]
8+
pull_request:
9+
10+
jobs:
11+
pyiron:
12+
uses: pyiron/actions/.github/workflows/push-pull.yml@actions-4.0.10
13+
secrets: inherit
14+
with:
15+
do-commit-updated-env: true
16+
do-build-docs: false
17+
do-build-notebooks: false
18+
do-unit-tests: false
19+
do-codecov: false
20+
do-codacy: false
21+
do-coveralls: false
22+
do-benchmark-tests: false
23+
do-pip-check: false
24+
do-black: false
25+
do-ruff-check: false
26+
do-ruff-sort-imports: false
27+
do-mypy: false

0 commit comments

Comments
 (0)