Add ability to visualize the board as SVG (#47) #577
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: [push, pull_request] | |
| jobs: | |
| run: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: ‘2’ | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.13" | |
| - name: Generate Report | |
| run: | | |
| pip install msl-loadlib pytest pytest-timeout pytest-cov requests | |
| pytest --cov=draughts --cov-report=xml | |
| coverage report --show-missing | |
| - name: Upload Coverage to Codecov | |
| uses: codecov/codecov-action@v2 |