feat: removing app server #55
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Testing | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Lint and format tools | |
run: | | |
cd tools/provider_csv_to_provider_json_script/ | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
black ./ | |
pylint ./ | |
- name: Test provider CSV | |
run: | | |
pip install -r mappings/test/requirements.txt | |
python mappings/test/test_csv_valid.py |