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", "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": "./",
}, },
] ]
} }

View file

@ -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
@ -110,4 +110,4 @@ jobs:
# - name: Publish to Coveralls # - name: Publish to Coveralls
# uses: coverallsapp/github-action@master # uses: coverallsapp/github-action@master
# with: # with:
# github-token: ${{ secrets.GITHUB_TOKEN }} # github-token: ${{ secrets.GITHUB_TOKEN }}

View file

@ -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