Skip to content

Add Azul game engine #1

Add Azul game engine

Add Azul game engine #1

Workflow file for this run

name: Run coverage
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12.9'
- name: Install dependencies
run: |
pip install -e .
pip install pytest pytest-cov
- name: Run tests with coverage
run: |
pytest --cov=azul_game_engine --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}