Skip to content

Update to version 0.1 #25

Update to version 0.1

Update to version 0.1 #25

Workflow file for this run

name: Code Coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout tarp
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Record State
run: |
pwd
echo github.ref is: ${{ github.ref }}
echo GITHUB_SHA is: $GITHUB_SHA
echo github.event_name is: ${{ github.event_name }}
echo github workspace: ${{ github.workspace }}
pip --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov
pip install -r requirements.txt
shell: bash
- name: Install tarp
run: |
pip install -e .
pip show tarp
shell: bash
- name: Test with pytest
run: |
pytest --cov-report=xml --cov=src/tarp tests/
cat coverage.xml
shell: bash
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
files: ${{ github.workspace }}/coverage.xml
# fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}