mirror of
https://github.com/adoyle0/leptos-use.git
synced 2025-01-22 16:49:22 -05:00
Problem: CI references storage feature. Replace with serde,prost
This commit is contained in:
parent
776479cafe
commit
5b056e8d19
3 changed files with 6 additions and 6 deletions
|
@ -3,12 +3,12 @@
|
||||||
{
|
{
|
||||||
"type": "cargo",
|
"type": "cargo",
|
||||||
"name": "Tests",
|
"name": "Tests",
|
||||||
"cargoArgs": ["test", "--features", "math,storage,docs"],
|
"cargoArgs": ["test", "--features", "math,prost,serde,docs"],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "cargo",
|
"type": "cargo",
|
||||||
"name": "Clippy",
|
"name": "Clippy",
|
||||||
"cargoArgs": ["+nightly", "clippy", "--features", "math,storage,docs", "--tests", "--", "-D", "warnings"],
|
"cargoArgs": ["+nightly", "clippy", "--features", "math,prost,serde,docs", "--tests", "--", "-D", "warnings"],
|
||||||
"workingDir": "./",
|
"workingDir": "./",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -30,7 +30,7 @@ jobs:
|
||||||
- name: Check formatting
|
- name: Check formatting
|
||||||
run: cargo fmt --check
|
run: cargo fmt --check
|
||||||
- name: Clippy
|
- name: Clippy
|
||||||
run: cargo clippy --features storage,docs,math --tests -- -D warnings
|
run: cargo clippy --features prost,serde,docs,math --tests -- -D warnings
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --all-features
|
run: cargo test --all-features
|
||||||
|
|
||||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -23,6 +23,6 @@ jobs:
|
||||||
- name: Check formatting
|
- name: Check formatting
|
||||||
run: cargo fmt --check
|
run: cargo fmt --check
|
||||||
- name: Clippy
|
- name: Clippy
|
||||||
run: cargo clippy --features storage,docs,math --tests -- -D warnings
|
run: cargo clippy --features prost,serde,docs,math --tests -- -D warnings
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --all-features
|
run: cargo test --all-features
|
||||||
|
|
Loading…
Add table
Reference in a new issue