Skip to content

Commit

Permalink
FIX: geo tests not running in CI
Browse files Browse the repository at this point in the history
Due to the lack of quoting, the "use-serde" feature was incorrectly
being interpreted as a filter on which tests to run.

e.g. compare

working:
https://github.com/georust/geo/runs/3929823924?check_suite_focus=true#step:6:72

broken:
https://github.com/georust/geo/runs/3929868700?check_suite_focus=true#step:5:184
  • Loading branch information
michaelkirk committed Jan 3, 2022
1 parent 3a9303d commit 5e2ffdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
uses: actions/checkout@v2
- run: cargo check --all-targets --no-default-features
# we don't want to test `proj-network` because it only enables the `proj` feature
- run: cargo test --features use-proj use-serde
- run: cargo test --features "use-proj use-serde"

geo_postgis:
name: geo-postgis
Expand Down

0 comments on commit 5e2ffdf

Please sign in to comment.