Skip to content

Fix build warnings (#48) #581

Fix build warnings (#48)

Fix build warnings (#48) #581

Workflow file for this run

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