Merge pull request #98 from planetlabs/api-future-date-fix #225
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run tests | |
on: [push, pull_request] | |
jobs: | |
test-client: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python: [3.8, 3.9, "3.10", 3.12] | |
extras: ["test", "test,queuable,sentry"] | |
steps: | |
- name: Setup Python | |
uses: actions/[email protected] | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Test | |
working-directory: ./client | |
run: | | |
pip install -e .[${{ matrix.extras }}] | |
py.test | |
test-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Test | |
run: | | |
make test-ingester test-api |