Skip to content

update company address #774

update company address

update company address #774

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-24.04
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: 3.12
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Setup
run: pip install -r requirements_dev.txt
- name: Test with pytest
run: pytest tests/ --cov-append --cov
- env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: coveralls --service=github