8000 Add OpenWeatherMap API to Weather section · public-apis/public-apis@25d7771 · GitHub
[go: up one dir, main page]

Skip to content

Add OpenWeatherMap API to Weather section #1232

Add OpenWeatherMap API to Weather section

61EA

Add OpenWeatherMap API to Weather section #1232

name: "Tests of validate package"
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unittest:
name: 'Run tests of validate package'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: python -m pip install -r scripts/requirements.txt
- name: Run Unittest
run: |
cd scripts
python -m unittest discover tests/ --verbose
0