Skip to content

Nueva licencia

Nueva licencia #22

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
run_tests:
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python_version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
name: test
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: python -m pip install pytest coverage chess Pillow matplotlib
- name: Run tests with coverage
run: coverage run -m pytest
- name: Generate coverage report
run: coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}