Skip to content

Improve readme

Improve readme #8

Workflow file for this run

name: CI
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [
ubuntu-latest,
windows-latest,
macOS-latest
]
python-version: [
"3.11"
]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install .['all']
- name: Run tests
run: pytest gcaa --cov=gcaa --cov-branch --cov-report=xml --cov-config=coverage.conf
- name: Check test coverage
shell: bash -l {0}
run: |
coverage report --rcfile=coverage.conf --fail-under=0
- name: Upload coverage reports to Codecov
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: MartinBraquet/task-allocation-auctions