Skip to content

Commit

Permalink
Simplify CI testing matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
lnicola committed Oct 17, 2021
1 parent b6d68e5 commit 533f865
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 16 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- run: cargo install cargo-all-features
- run: cargo build-all-features
- run: cargo test-all-features
- run: cargo check --all-targets --no-default-features
- run: cargo test --all-features

geo:
name: geo
Expand All @@ -60,9 +59,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- run: cargo install cargo-all-features
- run: cargo build-all-features
- run: cargo test-all-features
- run: cargo check --all-targets --no-default-features
- run: cargo test --all-features

geo_postgis:
name: geo-postgis
Expand All @@ -79,9 +77,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- run: cargo install cargo-all-features
- run: cargo build-all-features
- run: cargo test-all-features
- run: cargo check --all-targets --no-default-features
- run: cargo test --all-features

geo_fuzz:
name: geo-fuzz
Expand Down
7 changes: 0 additions & 7 deletions geo-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,3 @@ rstar = { version = "0.8", optional = true }

[dev-dependencies]
approx = "0.4.0"

[package.metadata.cargo-all-features]

skip_feature_sets = [
# must be enabled via use-rstar
["rstar"],
]

0 comments on commit 533f865

Please sign in to comment.