Problem: CI references storage feature. Replace with serde,prost

This commit is contained in:
Joshua McQuistan 2023-11-11 10:43:32 +00:00
parent 776479cafe
commit 5b056e8d19
3 changed files with 6 additions and 6 deletions

View file

@ -3,14 +3,14 @@
{
"type": "cargo",
"name": "Tests",
"cargoArgs": ["test", "--features", "math,storage,docs"],
"cargoArgs": ["test", "--features", "math,prost,serde,docs"],
},
{
"type": "cargo",
"name": "Clippy",
"cargoArgs": ["+nightly", "clippy", "--features", "math,storage,docs", "--tests", "--", "-D", "warnings"],
"cargoArgs": ["+nightly", "clippy", "--features", "math,prost,serde,docs", "--tests", "--", "-D", "warnings"],
"workingDir": "./",
},
]
}
}

View file

@ -30,7 +30,7 @@ jobs:
- name: Check formatting
run: cargo fmt --check
- 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
run: cargo test --all-features
@ -110,4 +110,4 @@ jobs:
# - name: Publish to Coveralls
# uses: coverallsapp/github-action@master
# with:
# github-token: ${{ secrets.GITHUB_TOKEN }}
# github-token: ${{ secrets.GITHUB_TOKEN }}

View file

@ -23,6 +23,6 @@ jobs:
- name: Check formatting
run: cargo fmt --check
- 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
run: cargo test --all-features