Skip to content

Commit

Permalink
Merge pull request tweag#212 from tweag/module-tests
Browse files Browse the repository at this point in the history
run all module tests on CI
  • Loading branch information
mergify[bot] authored Apr 1, 2022
2 parents c9a0897 + 4f48f76 commit f2e8160
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,23 @@ jobs:
- name: Build & test
run: |
nix-shell --pure --run '
set -euo pipefail
bazel test //...
set -euo pipefail
dirs=(
.
core
toolchains/go
toolchains/java
toolchains/cc
toolchains/python
toolchains/posix
toolchains/rust
)
for dir in "${dirs[@]}"
do
pushd $dir
bazel test //...
popd
done
'
test-examples:
name: Build & Test - Examples
Expand Down

0 comments on commit f2e8160

Please sign in to comment.