Added time offset configuration to correct for non UTC time codes #110
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@v2 | |
with: | |
python-version: "3.x" | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install dependencies | |
shell: bash | |
run: | | |
python -m pip install --upgrade pip | |
pip install Bottleneck | |
cd $GITHUB_WORKSPACE | |
pip install . | |
- name: Run unit tests | |
shell: bash | |
run: | | |
cd $GITHUB_WORKSPACE/src/pypromice | |
python3 -m unittest -v process/aws.py get.py tx/tx.py |