diff --git a/.github/workflows/minimal-versions.yml b/.github/workflows/minimal-versions.yml index 4f12389..70e65ac 100644 --- a/.github/workflows/minimal-versions.yml +++ b/.github/workflows/minimal-versions.yml @@ -46,7 +46,8 @@ jobs: - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ inputs.nightly }} - - run: rm ../Cargo.toml + # Use a stub Cargo.toml at the workspace-level which still allows workspace-level configs to function + - run: printf "[workspace]\nmembers=[\"%q\"]" $(pwd) >> ../Cargo.toml - run: cargo update -Z minimal-versions - run: ${{ inputs.nightly-cmd }} # Perform tests diff --git a/.yamllint.yaml b/.yamllint.yaml new file mode 100644 index 0000000..288670b --- /dev/null +++ b/.yamllint.yaml @@ -0,0 +1,2 @@ +rules: + line-length: disable