mirror of
https://github.com/actix/actix-web.git
synced 2025-06-05 06:38:47 +00:00
add msrv workarounds to ci
This commit is contained in:
parent
2f79daec16
commit
e0845d9ad9
1 changed files with 6 additions and 1 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -47,6 +47,12 @@ jobs:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
|
- name: workaround MSRV issues
|
||||||
|
if: matrix.version != 'stable'
|
||||||
|
run: |
|
||||||
|
cargo add const-str@0.3 --dev -p=actix-web
|
||||||
|
cargo add const-str@0.3 --dev -p=awc
|
||||||
|
|
||||||
- name: Generate Cargo.lock
|
- name: Generate Cargo.lock
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with: { command: generate-lockfile }
|
with: { command: generate-lockfile }
|
||||||
|
@ -68,7 +74,6 @@ jobs:
|
||||||
with: { command: ci-check-default }
|
with: { command: ci-check-default }
|
||||||
|
|
||||||
- name: tests
|
- name: tests
|
||||||
if: matrix.version == 'stable' # temp?
|
|
||||||
timeout-minutes: 60
|
timeout-minutes: 60
|
||||||
run: |
|
run: |
|
||||||
cargo test --lib --tests -p=actix-router --all-features
|
cargo test --lib --tests -p=actix-router --all-features
|
||||||
|
|
Loading…
Reference in a new issue