Skip to content

Initial code

Initial code #1

Workflow file for this run

name: Python test
on:
pull_request:
branches: [ "main" ]
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Verify code quality
shell: bash
run: |
cd python
pip install mypy flake8 pytest
mypy
flake8
pytest