Skip to content

Merge pull request #39 from nasa/37_38_remove_parse_multiple_files_re… #86

Merge pull request #39 from nasa/37_38_remove_parse_multiple_files_re…

Merge pull request #39 from nasa/37_38_remove_parse_multiple_files_re… #86

Workflow file for this run

name: Unit test run
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements_pip.txt ]; then pip install -r requirements_pip.txt; fi
- name: Test with pytest
run: python -m coverage run --branch --source=onair -m pytest ./test/
- name: Coverage report
run: coverage report
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3