test - add bash script tests to CI (#54)
This commit is contained in:
parent
3599515632
commit
d21acfbd5a
|
@ -34,3 +34,6 @@ jobs:
|
|||
# Bazelisk will download bazel to here
|
||||
XDG_CACHE_HOME: ~/.cache/bazel-repo
|
||||
run: bazel --bazelrc=.github/workflows/ci.bazelrc --bazelrc=.bazelrc test //...
|
||||
- name: integration tests
|
||||
# Find all shell scripts within e2e, echo the filename, execute, fail on error
|
||||
run: find e2e/*.sh -maxdepth 1 -type f -exec sh -c 'echo "\n\n------------------------------- $0 -------------------------------" && "$0" || kill $PPID' \{\} \;
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
bazel run //lib/tests/write_source_files:write_dist
|
Loading…
Reference in New Issue