ci: run beta clippy as an allowed-to-fail job
This commit is contained in:
parent
53311a90eb
commit
8e5ef9058b
|
@ -113,7 +113,17 @@ jobs:
|
|||
rust-target: "i686-pc-windows-msvc",
|
||||
},
|
||||
]
|
||||
include:
|
||||
# Run beta clippy as a way to detect any incoming lints which may affect downstream users
|
||||
- rust: beta
|
||||
platform:
|
||||
{
|
||||
os: "ubuntu-latest",
|
||||
python-architecture: "x64",
|
||||
rust-target: "x86_64-unknown-linux-gnu",
|
||||
}
|
||||
name: clippy/${{ matrix.platform.rust-target }}/${{ matrix.rust }}
|
||||
continue-on-error: ${{ matrix.platform.rust != 'stable' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: dtolnay/rust-toolchain@master
|
||||
|
|
Loading…
Reference in New Issue