Closed
Description
We use cargo-semver-checks-action
in CI to ensure we do not accidentally break semver compatibility:
zerocopy/.github/workflows/ci.yml
Lines 244 to 264 in 0ff2dd1
This check occurs within our build matrix, so it's re-run for each target
:
zerocopy/.github/workflows/ci.yml
Lines 41 to 53 in 0ff2dd1
However, we aren't actually making use of target
, meaning we are re-running the exact same check 11 times on the Github Actions host target (x86_64-unknown-linux-gnu
).
We need to modify this CI job to respect the value of target
. To do this, see here: obi1kenobi/cargo-semver-checks-action#54 (comment)