Skip to content

First shot at fixing the server side parameter initialization issue. #190

First shot at fixing the server side parameter initialization issue.

First shot at fixing the server side parameter initialization issue. #190

# only has to pass for python 3.9
name: Static code checks
on:
push:
branches:
main
pull_request:
branches:
main
jobs:
run-code-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: 3.9
cache: 'pip'
- name: precommit checks
run: |
pip install --upgrade pip
pip install -r requirements.txt
pre-commit run --all-files