Skip to content

Added state and city generator #36

Added state and city generator

Added state and city generator #36

Workflow file for this run

name: Python Tests
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
cd pyFBIG
python3 -m pip install -r requirements.txt
- name: Run tests and Upload coverage reports to Codecov
run: |
python3 -m pip install pytest
pytest tests --cov
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${{secrets.CODECOV_TOKEN}}