Skip to content

Commit

Permalink
ci: don't fail-fast, add gdal
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Apr 9, 2024
1 parent 149bc61 commit 3ba38f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ env:
jobs:
test:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Rust cache
uses: Swatinem/rust-cache@v2
- name: Install GDAL on ubuntu
run: sudo apt-get install libgdal-dev
- name: Format
run: cargo fmt --verbose
- name: Build
Expand All @@ -29,9 +30,8 @@ jobs:
test-stac:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
flags: ["", "--features geo", "--features reqwest", "--features schemars"]
flags: ["", "--features geo", "--features reqwest", "--features schemars", "--features gdal"]
steps:
- uses: actions/checkout@v4
- name: Set up Rust cache
Expand Down

0 comments on commit 3ba38f7

Please sign in to comment.