Skip to content

Commit cefc19c

Browse files
Update instance repo from cookiecutter template
1 parent c3e8ae2 commit cefc19c

4 files changed

Lines changed: 8 additions & 5 deletions

File tree

.cruft.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"template": "/home/runner/work/cookiecutter-scverse/cookiecutter-scverse",
3-
"commit": "497afeaf179fe5c1144c4503046efa494586cc3d",
3+
"commit": "a314157b248f1cce51f5b0d42f971bb72fd4a885",
44
"checkout": null,
55
"context": {
66
"cookiecutter": {
@@ -24,7 +24,7 @@
2424
"trim_blocks": true
2525
},
2626
"_template": "/home/runner/work/cookiecutter-scverse/cookiecutter-scverse",
27-
"_commit": "497afeaf179fe5c1144c4503046efa494586cc3d"
27+
"_commit": "a314157b248f1cce51f5b0d42f971bb72fd4a885"
2828
}
2929
},
3030
"directory": null

.github/workflows/build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ concurrency:
1212

1313
defaults:
1414
run:
15-
shell: bash -e {0} # -e to fail on error
15+
# to fail on error in multiline statements (-e), in pipes (-o pipefail), and on unset variables (-u).
16+
shell: bash -euo pipefail {0}
1617

1718
jobs:
1819
package:

.github/workflows/release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66

77
defaults:
88
run:
9-
shell: bash -e {0} # -e to fail on error
9+
# to fail on error in multiline statements (-e), in pipes (-o pipefail), and on unset variables (-u).
10+
shell: bash -euo pipefail {0}
1011

1112
# Use "trusted publishing", see https://docs.pypi.org/trusted-publishers/
1213
jobs:

.github/workflows/test.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ concurrency:
1414

1515
defaults:
1616
run:
17-
shell: bash -e {0} # -e to fail on error
17+
# to fail on error in multiline statements (-e), in pipes (-o pipefail), and on unset variables (-u).
18+
shell: bash -euo pipefail {0}
1819

1920
jobs:
2021
test:

0 commit comments

Comments
 (0)