Skip to content

first facade done :) #221

first facade done :)

first facade done :) #221

Workflow file for this run

# Check if the tests covers all the code
name: Codecov(erage).
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
name: Test python API
steps:
- uses: actions/checkout@master
- name: Install requirements
run: pip install -r requirements.txt
- name: Run tests and collect coverage
run: pytest --cov .
- name: Upload coverage reports to Codecov
# run: |
# # Replace `linux` below with the appropriate OS
# # Options are `alpine`, `linux`, `macos`, `windows`
# curl -Os https://uploader.codecov.io/latest/linux/codecov
# chmod +x codecov
# ./codecov -t ${CODECOV_TOKEN}
- uses: codecov/codecov-action@v3
name: Upload coverage to Codecov
with:
token: ${{ secrets.CODECOV_TOKEN }}