Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/minimal-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions .yamllint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
rules:
line-length: disable
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIRC it's possible to split run commands into multiple lines.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would rather not have to debug syntax issues in YAML configuration files because some lint is telling me every line must be 80 characters long, which is a silly restriction to begin with