fix test get_combined_vertical_prop_in_latitude_range #558
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: Tests | |
on: | |
- push | |
- pull_request | |
jobs: | |
python-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/setup-python | |
- uses: pre-commit/[email protected] | |
- name: Python tests | |
run: uv run pytest --color=yes | |
r-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/workflows/setup-r | |
- name: R tests | |
run: Rscript -e "packageVersion('arrow')" | |
working-directory: r/ |