ci: format workflow

This commit is contained in:
Corentin Le Molgat
2023-07-07 17:56:31 +02:00
parent 3ac43c3beb
commit 69317bc7e9

View File

@@ -24,6 +24,16 @@ jobs:
- name: Check Bazel
run: bazel version
- name: Build
run: bazel build -c opt --action_env=BAZEL_CXXOPTS="-std=c++17" --subcommands=true //ortools/... //examples/...
run: >
bazel build
-c opt
--action_env=BAZEL_CXXOPTS="-std=c++17"
--subcommands=true
//ortools/... //examples/...
- name: Test
run: bazel test -c opt --action_env=BAZEL_CXXOPTS="-std=c++17" --test_output=errors //ortools/... //examples/...
run: >
bazel test
-c opt
--action_env=BAZEL_CXXOPTS="-std=c++17"
--test_output=errors
//ortools/... //examples/...