ci: run //:check and //:generate concurrently (#1606)

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2023-04-04 04:39:57 -04:00 committed by GitHub
parent 13365d7272
commit 00ced1bbc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -432,7 +432,7 @@ multirun(
":actionlint", ":actionlint",
], ],
}), }),
jobs = 1, # execute sequentially jobs = 0, # execute concurrently
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )
@ -445,6 +445,6 @@ multirun(
":proto_generate", ":proto_generate",
":cli_docgen", ":cli_docgen",
], ],
jobs = 1, # execute sequentially jobs = 0, # execute concurrently
visibility = ["//visibility:public"], visibility = ["//visibility:public"],
) )