Skip to content

Release stac-api-v0.5.0 #2

Release stac-api-v0.5.0

Release stac-api-v0.5.0 #2

Workflow file for this run

name: api
on:
pull_request:
paths:
- api/**
workflow_dispatch:
defaults:
run:
working-directory: api
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
CARGO_TERM_VERBOSE: true
jobs:
test:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
args:
- ""
- "-F geo"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Rust cache
uses: Swatinem/rust-cache@v2
- name: Test
run: cargo test ${{ matrix.args }}