Gap filling with NaN values added to Level 2 #546
This file contains hidden or 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
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize, edited] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: unit_test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python_version: ['3.10', '3.11'] | |
| steps: | |
| - name: Install Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python_version }} | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install eccodes | |
| run : | | |
| sudo apt-get install -y libeccodes-dev | |
| - name: Install dependencies | |
| shell: bash | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| python3 -m pip install Bottleneck | |
| python3 -m pip install --upgrade setuptools | |
| cd $GITHUB_WORKSPACE | |
| pip install . | |
| - name: Run unit tests | |
| shell: bash | |
| run: | | |
| python3 -m unittest discover tests |