Skip to content

Rearchitecture backend #76

Rearchitecture backend

Rearchitecture backend #76

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16.x
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r python/requirements.txt
pip install -r python/linter_req.txt
- name: lint w/ black
run: $(cat blackify.bat)
- name: Test with pytest
run: pytest
- name: Use Node.js 16
uses: actions/[email protected]
with:
node-version: "16"
- run: npm ci
- run: npm test