Skip to content

Driver profiling sim #107

Driver profiling sim

Driver profiling sim #107

Workflow file for this run

name: Python Application
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test Repository
run: |
pytest
env:
BING_MAPS_API_KEY: ${{ secrets.BING_MAPS_API_KEY }}
TOMORROW_IO_API_KEY: ${{ secrets.TOMORROW_IO_API_KEY }}