Merge pull request #373 from ocefpaf/fix_context_loader #252
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: Core Tests | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
packages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Set up Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b #v5 | |
with: | |
python-version: "3.x" | |
- name: Install | |
run: > | |
python -m pip install . | |
&& python -m pip install pytest pyarrow | |
- name: Core Tests | |
run: python -m pytest -rxs tests/test_erddapy.py |