Skip to content

Added option for local file use instead of AMF_CVs #345

Added option for local file use instead of AMF_CVs

Added option for local file use instead of AMF_CVs #345

Workflow file for this run

name: build
on:
pull_request:
branches:
- main
schedule:
# midnight Sunday
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
fail-fast: false
steps:
- uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
pip install -r requirements.txt
pip install -e . --no-deps
- name: Test with pytest
run: >
python -m pytest --cov --cov-branch -v tests/test_build.py
tests/test_create_netcdf.py tests/test_util.py tests/test_values.py
tests/test_tsv2dict.py
- name: Upload coverage reports to Codecov with GitHub Action
if: ${{ matrix.python-version == '3.13' && matrix.os == 'ubuntu-latest' }}
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}