Skip to content

Update cattrs requirement from <24.0,>=22.2 to >=22.2,<25.0 #299

Update cattrs requirement from <24.0,>=22.2 to >=22.2,<25.0

Update cattrs requirement from <24.0,>=22.2 to >=22.2,<25.0 #299

Workflow file for this run

name: CI
on:
push:
branches: ["main", "dev"]
pull_request:
branches: ["main", "dev"]
workflow_dispatch:
jobs:
tox:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ubuntu-latest
steps:
- uses: ghdl/setup-ghdl-ci@nightly
with:
backend: llvm
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies
run: |
python -VV
python -m pip install --upgrade pip
python -m pip install --upgrade tox tox-gh-actions
- name: "Run tox targets for ${{ matrix.python-version }}"
run: "python -m tox"