build(deps): update rust crate time to v0.3.42 (#1346) #3163
This file contains hidden or 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
on: | |
- push | |
- pull_request | |
- workflow_call | |
name: Continuous integration | |
# Declare default permissions as read only. | |
permissions: read-all | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
name: Cargo check | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: enable git long paths on Windows | |
if: matrix.os == 'windows-latest' | |
run: git config --global core.longpaths true | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
# aws-lc-sys CMakefile contains a directive that has been removed from | |
# cmake v4 that has just been released (march 2025). The build failure | |
# can be fixed by setting an environment variable | |
- name: fix aws-lc-sys building with cmake 4.0.0 | |
if: matrix.os == 'windows-latest' | |
run: | | |
echo 'CMAKE_POLICY_VERSION_MINIMUM="3.5"' >> $GITHUB_ENV | |
- name: Run cargo check | |
run: cargo check | |
version-check: | |
name: Check Cargo.toml version | |
if: github.ref_type == 'tag' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download source code | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Check cargo file version | |
run: | | |
CARGO_VERSION=$(sed -n 's,^version\s*= \"\(.*\)\",\1,p' Cargo.toml) | |
TAG_VERSION=$(echo ${{ github.ref_name }} | sed 's/v//') | |
if [ "$CARGO_VERSION" != "$TAG_VERSION" ];then | |
echo "::error title=Invalid Cargo.toml version::Cargo.toml version does not match the tag version" | |
exit 1 | |
fi | |
test: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Run cargo test | |
run: cargo test --workspace --bins | |
e2e-tests: | |
name: E2E tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- uses: sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159 # v3.9.2 | |
# FIXME workaround for https://github.com/kubewarden/kwctl/issues/1245 | |
with: | |
cosign-release: "v2.5.0" | |
- name: run e2e tests | |
run: make e2e-tests | |
coverage: | |
name: coverage | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@14083e64ac8cf1f5e54356df00b9779b23e192a1 # v2.58.29 | |
with: | |
tool: cargo-llvm-cov | |
- name: Install cosign # this is needed by some of the e2e tests | |
uses: sigstore/cosign-installer@d58896d6a1865668819e1d91763c7751a165e159 # v3.9.2 | |
# FIXME workaround for https://github.com/kubewarden/kwctl/issues/1245 | |
with: | |
cosign-release: "v2.5.0" | |
- name: Generate tests coverage | |
run: cargo llvm-cov --lcov --output-path lcov.info | |
- name: Upload unit-tests coverage to Codecov | |
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0 | |
with: | |
files: lcov.info | |
fail_ci_if_error: true | |
name: unit-tests and e2e-tests | |
verbose: true | |
token: ${{ secrets.CODECOV_ORG_TOKEN }} | |
fmt: | |
name: Rustfmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- run: rustup component add rustfmt | |
- name: Run cargo fmt | |
run: cargo fmt --all -- --check | |
clippy: | |
name: Clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- run: rustup component add clippy | |
- name: Run cargo clippy | |
run: cargo clippy -- -D warnings | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- run: shellcheck $(find scripts/ -name '*.sh') | |
docs: | |
name: Update documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- run: | | |
make build-docs | |
if ! git diff --quiet cli-docs.md; then | |
echo "Changes detected in cli-docs.md. Please run `make build-docs` and commit the changes." | |
gh run cancel ${{ github.run_id }} | |
fi | |
spelling: | |
name: Spell Check with Typos | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Actions Repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
- name: Spell Check Repo | |
uses: crate-ci/typos@65f69f021b736bdbe548ce72200500752d42b40e # v1.35.7 |