Skip to content

Add Unittest for meteolib #53

Add Unittest for meteolib

Add Unittest for meteolib #53

Workflow file for this run

name: Unittest
on: [push, pull_request_target, issues]
jobs:
build-linux:
runs-on: ubuntu-latest
env:
PYTHONPATH: ${{ github.workspace }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip3 install --upgrade pip
pip3 install -r requirements.txt
- name: Run tests with nose2
run: |
cd test
nose2