diff --git a/.github/workflows/ci-python.yml b/.github/workflows/ci-python.yml index c64629d0..f3016ef1 100644 --- a/.github/workflows/ci-python.yml +++ b/.github/workflows/ci-python.yml @@ -7,8 +7,6 @@ on: - apis/python/** - binaries/runtime/** pull_request: - branches: - - main jobs: examples: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 445f75b9..cacbe4ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -131,6 +131,16 @@ jobs: with: command: clippy args: --all + - name: "Clippy (tracing feature)" + uses: actions-rs/cargo@v1 + with: + command: clippy + args: --all --features tracing + - name: "Clippy (metrics feature)" + uses: actions-rs/cargo@v1 + with: + command: clippy + args: --all --features metrics rustfmt: name: "Formatting"