Skip to content

Also unpin pylint and pycodestyle #22

Also unpin pylint and pycodestyle

Also unpin pylint and pycodestyle #22

Workflow file for this run

name: PyVCG CI Test
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
build:
strategy:
matrix:
py-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: supplypike/setup-bin@v5
with:
uri: 'https://github.com/cvc5/cvc5/releases/download/cvc5-1.3.1/cvc5-Linux-x86_64-static.zip'
name: 'cvc5'
version: '1.3.1'
- name: Set up Python ${{ matrix.py-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.py-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test
run: |
coverage run --branch --rcfile=coverage.cfg -m unittest discover -s tests -v
coverage report --rcfile=coverage.cfg --fail-under=100