Write L2 to file and leave all additional variable derivation for the L2toL3 step #291
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
on: | |
pull_request: | |
types: [opened, reopened, synchronize, edited] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: unit_test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python_version: ['3.8','3.9','3.10'] | |
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 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 pypromice |