Skip to content

fix: dont install if variable doesnt exist #91

fix: dont install if variable doesnt exist

fix: dont install if variable doesnt exist #91

Workflow file for this run

name: CI
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install requirements
run: make init
- name: Run tests
run: pytest --cov=normalizer --cov=generator --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml