Skip to content

Add alternative Picosat Project #3582

Add alternative Picosat Project

Add alternative Picosat Project #3582

Workflow file for this run

name: Python CI
on:
push:
branches: [ vara, vara-dev ]
pull_request:
branches: [ vara, vara-dev ]
merge_group:
branches: [ vara, vara-dev ]
env:
BB_TMP_DIR: $(pwd)/benchbuild/tmp
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: ./.github/actions/dependenciesActions
- name: Run unittests
run: |
echo $BB_TMP_DIR
mkdir -p benchbuild
coverage run -p -m pytest varats varats-core tests
rm -rf benchbuild
- name: Combine Coverage
run: |
coverage combine -a --rcfile=.coveragerc
coverage xml
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml