This repository was archived by the owner on Aug 26, 2025. It is now read-only.
XAPI: Add command line interface (CLI) #58
Workflow file for this run
This file contains hidden or 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: CodeCov | |
| on: [pull_request, push] | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install requirements | |
| run: pip install -r requirements.txt | |
| - name: Install coverage | |
| run: pip install coverage | |
| - name: Generate Report | |
| run: coverage run -m unittest discover -s tests/ | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v3 |