From 69317bc7e96efede8afaff7da76080a04b584b63 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 7 Jul 2023 17:56:31 +0200 Subject: [PATCH] ci: format workflow --- .github/workflows/amd64_macos_bazel.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/amd64_macos_bazel.yml b/.github/workflows/amd64_macos_bazel.yml index d0e17328ae0..da5d226e6a9 100644 --- a/.github/workflows/amd64_macos_bazel.yml +++ b/.github/workflows/amd64_macos_bazel.yml @@ -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/...