Skip to content

feat: redwood support #276

feat: redwood support

feat: redwood support #276

Workflow file for this run

name: Unit tests, QA
on:
push:
branches:
- main
- '**'
pull_request:
branches:
- main
- '**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: requirements/dev.txt
- name: Install dependencies
run: |
make requirements
- name: Run the QA suite
run: |
make quality