Create zenodo release #123
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: Test | |
on: | |
pull_request: {} | |
push: | |
branches: master | |
tags: "*" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies with pip | |
run: | | |
python -m pip install -e .[dev] | |
- run: isort --recursive --diff . | |
- run: black --check --diff . | |
- run: flake8 | |
- run: mypy | |
- run: pytest --cov --cov-fail-under=50 | |
test_plotting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.11 | |
- name: Install dependencies with pip | |
run: | | |
python -m pip install -e .[dev] | |
- name: Create plots | |
run: | | |
python scripts/plot_radiosonde_data.py -i examples/level1/EUREC4A_BCO_Vaisala-RS_L1-ascent_20200126T2244_v3.0.0.nc -o artifacts | |
- name: Upload plots | |
uses: actions/upload-artifact@v3 | |
with: | |
name: figures | |
path: | | |
artifacts |