fix error message for Try (#342) #523
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bazel | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: deps | |
# Install Bazel See: https://bazel.build/install/ubuntu | |
run: | | |
sudo apt install -y libaio-dev | |
- name: Build | |
# Build your program with clang | |
working-directory: ${{github.workspace}} | |
run: bazel build --action_env=CXX=clang++ --action_env=CC=clang ... | |
- name: Test | |
# Build and Execute tests | |
working-directory: ${{github.workspace}} | |
run: bazel test --action_env=CXX=clang++ --action_env=CC=clang --test_output=errors ... |