Skip to content

feat: relaxing requirements on minimum information model components #9

feat: relaxing requirements on minimum information model components

feat: relaxing requirements on minimum information model components #9

Workflow file for this run

name: backend_checks
on: [push, pull_request]
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: pip install server/
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: black
uses: psf/black@stable
with:
src: "./server"
- name: ruff
uses: chartboost/ruff-action@v1
with:
src: "./server"