Skip to content

Added name generator #17

Added name generator

Added name generator #17

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
run: |
python3 -m pip install pytest
pytest tests