mirror of
https://github.com/gfx-rs/wgpu.git
synced 2026-04-22 03:02:01 -04:00
Allow newer bitflags
This commit is contained in:
committed by
Dzmitry Malyshau
parent
70be72d9b9
commit
800f910103
8
.github/workflows/pipeline.yml
vendored
8
.github/workflows/pipeline.yml
vendored
@@ -8,7 +8,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
rust: [1.43.0, nightly]
|
||||
rust: ["1.43.0", nightly]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
@@ -16,6 +16,12 @@ jobs:
|
||||
profile: minimal
|
||||
toolchain: ${{ matrix.rust }}
|
||||
override: true
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: Downgrade bitflags to MSRV
|
||||
if: ${{ matrix.rust }} == "1.43.0"
|
||||
with:
|
||||
command: update
|
||||
args: -p bitflags --precise 1.2.1
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: Default test
|
||||
with:
|
||||
|
||||
Reference in New Issue
Block a user