willbe 0.35.0

Utility to publish multi-crate and multi-workspace environments and maintain their consistency.
Documentation

name : for_pr_push

on :

  workflow_call :
    inputs :
      manifest_path :
        required : true
        type : string
      module_name :
        required : true
        type : string
      commit_message :
        required : true
        type : string
      with_smoke :
        required : false
        type : string
        default : true

concurrency :

  group : for_pr_rust_push_${{ inputs.module_name }}_${{ github.ref }}_
    ${{ contains( inputs.commit_message, '+test' ) || startsWith( inputs.commit_message, 'merge' ) }}
  cancel-in-progress : true

env :

  RUST_BACKTRACE : 1
  CARGO_TERM_COLOR : always
  WITH_SMOKE : ${{ inputs.with_smoke }}

jobs :

  will_test :
    if : contains( inputs.commit_message, '+test' ) || contains( inputs.commit_message, 'merge' )
    concurrency :
      group : for_pr_rust_push_${{ inputs.module_name }}_${{ github.ref }}_${{ matrix.os }}
      cancel-in-progress : true
    strategy :
      fail-fast : false
      matrix :
        os : [ ubuntu-latest, windows-latest, macos-latest ]
    runs-on : ${{ matrix.os }}
    steps :
      - name : Install latest stable toolchain
        uses : dtolnay/rust-toolchain@stable
      - name : Install latest nightly toolchain
        uses : dtolnay/rust-toolchain@nightly
      - uses: actions/checkout@v4
      - name: Install will
        run: cargo +stable install --git https://github.com/Wandalen/wTools --branch alpha willbe
      - name: Set MANIFEST_ROOT_PATH
        id: rootpath
        run: echo "path=$(dirname ${{ inputs.manifest_path }})" >> $GITHUB_OUTPUT
      - name: Run tests with each feature
        run: will .test ${{ steps.rootpath.outputs.path }}/ dry:0 exclude:'' with_all_features:1 with_debug:1 with_nightly:0 with_none_features:1 with_release:0 with_stable:1