Skip to content

Re-organise backend file structure #88

Re-organise backend file structure

Re-organise backend file structure #88

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test-python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Analyze code with pylint
run: |
pip install pylint
pylint $(git ls-files '*.py')
continue-on-error: true
- name: Build
run: pip install .
- name: Test and coverage
run: |
pip install pytest pytest-cov
pytest --cov=src/tqec $(git ls-files '*_test.py')
build-and-test-nodejs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20.x"
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Test
run: npm test