Skip to content

update name

update name #5

Workflow file for this run

name: stac-fastapi-mongo
on:
push:
branches:
- main
pull_request:
branches:
- main
- features/**
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11"]
name: Python ${{ matrix.python-version }} testing
steps:
- name: Check out repository code
uses: actions/checkout@v4
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Lint code
uses: pre-commit/[email protected]