bug fix for single subset. #153
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: | |
main: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.7, 3.8, 3.9] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
name: Setup Python ${{ matrix.python-version }} | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup conda | |
uses: s-weigand/setup-conda@v1 | |
with: | |
update-conda: true | |
python-version: ${{ matrix.python-version }} | |
conda-channels: anaconda, conda-forge | |
- name: Install udunits | |
run: sudo apt-get install -y libudunits2-0 | |
- name: Install requirements 📦 | |
run: | | |
conda install eccodes | |
python3 -m pip install --upgrade pip | |
pip3 install -r requirements.txt | |
pip3 install -e "git+https://github.com/tomkralidis/jsonschema@ref-yaml#egg=jsonschema" | |
pip3 install -r requirements-dev.txt | |
python3 setup.py install | |
- name: run tests ⚙️ | |
run: | | |
cd tests | |
pytest | |
- name: run flake8 ⚙️ | |
run: | | |
flake8 --exclude src/jsonschema | |