Skip to content

README: Change title #712

README: Change title

README: Change title #712

Workflow file for this run

name: tests
on: [push, pull_request]
env:
FLASK_APP: insights.wsgi:app
FLASK_ENV: development
MAPBOX_ACCESS_TOKEN: ${{ secrets.MAPBOX_ACCESS_TOKEN }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Setup
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
git submodule update --init --recursive
- name: Test with pytest
run: pytest tests/ --cov-append --cov
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: coveralls --service=github