Skip to content

Refactor/handle solve args #2449

Refactor/handle solve args

Refactor/handle solve args #2449

Workflow file for this run

name: Test
on:
schedule:
- cron: 00 00 * * 1
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ["3.10", "3.11"]
include:
- os: macos-latest
python: "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install pip dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test
run: |
tox -e py-${{ matrix.python }}
env:
PYTEST_ADDOPTS: -vv -n 2
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml
flags: tests-${{ matrix.os }}-${{ matrix.python }}
name: unittests
env_vars: OS,PYTHON
fail_ci_if_error: false
verbose: true