Improving readability/consistency of errors/exceptions in gempyor (second batch) #154
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: gempyor-ci | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- examples/**/* | |
- flepimop/gempyor_pkg/**/* | |
branches: | |
- main | |
pull_request: | |
paths: | |
- examples/**/* | |
- flepimop/gempyor_pkg/**/* | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false | |
strategy: | |
matrix: | |
python-version: ["3.10", "3.11"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
sparse-checkout: | | |
* | |
!documentation/ | |
sparse-checkout-cone-mode: false | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install gempyor | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install "flepimop/gempyor_pkg[test]" | |
shell: bash | |
- name: Run gempyor tests | |
run: | | |
cd flepimop/gempyor_pkg | |
pytest --exitfirst | |
shell: bash | |
- name: Run gempyor-cli integration tests from examples | |
run: | | |
cd examples | |
pytest --exitfirst | |
shell: bash |