Skip to content

Try to debug GitHub CI #43

Try to debug GitHub CI

Try to debug GitHub CI #43

Workflow file for this run

name: "test"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: pip install ".[dev]"
- name: Load cached sample data and proffast code
uses: actions/cache@v4
with:
path: |
data/testing/container/em27-retrieval-pipeline-test-inputs-1.0.0.tar.gz
src/retrieval/algorithms/proffast-1.0/main/prf
src/retrieval/algorithms/proffast-2.2/main/prf
src/retrieval/algorithms/proffast-2.3/main/prf
key: v1.0.0-ci-cache
# run test suite
- name: Run pytests
run: |
pytest -m "ci" --capture=no --verbose --exitfirst --cov=src tests/