Skip to content

#950 refactored options line parser #1178

#950 refactored options line parser

#950 refactored options line parser #1178

name: Check Bazel Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
USE_BAZEL_VERSION=7.2.1

Check failure on line 15 in .github/workflows/check_bazel_tests.yml

View workflow run for this annotation

GitHub Actions / Check Bazel Tests

Invalid workflow file

The workflow is not valid. .github/workflows/check_bazel_tests.yml (Line: 15, Col: 7): Unexpected value 'USE_BAZEL_VERSION=7.2.1'
steps:
- uses: actions/checkout@v4
- name: Search for duplicated error codes
run: bash find_duplicate_error_codes.sh
- name: Install bazel
run: |
curl -L -o bazel https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/bazelisk-linux-amd64
chmod +x bazel
- name: Install JDK and ZMQ
run: |
sudo apt-get update
sudo apt-get install -y openjdk-11-jdk libzmq3-dev
- name: Java Tests
run: |
bazel test //base/javacontainer/test/...
working-directory: ./exaudfclient/
- name: ExaudfLib Tests
run: |
bazel test //base/exaudflib/test/...
working-directory: ./exaudfclient/
- name: Script Options Parser Tests
run: |
bazel test //base/script_options_parser/test/...
working-directory: ./exaudfclient/