Don't skip Docker action if docker
label is on PR
#281
Workflow file for this run
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
# We use this to test the Rust workflows. | |
name: Rust Workflow Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: null | |
workflow_dispatch: null | |
jobs: | |
invoke_rust_ci: | |
name: Rust CI Test | |
uses: ./.github/workflows/rust-ci.yaml | |
with: | |
run_clippy: true | |
rust_root: test/rust | |
test_matrix_include: | | |
[ | |
{ rust_version: "", build_only: false }, | |
{ rust_version: "stable", rust_target: "wasm32-unknown-unknown", build_only: true } | |
] | |
secrets: inherit | |
invoke_rust_daily: | |
name: Rust Daily Test | |
uses: ./.github/workflows/rust-daily.yaml | |
with: | |
rust_root: test/rust | |
matrix_include: | | |
[ | |
{ rust_version: "" }, | |
{ rust_version: "stable", rust_target: "wasm32-unknown-unknown" } | |
] | |
additional_system_deps: libzmq3-dev | |
secrets: inherit |