Skip to content

Remove one of the encrypted serial code. #99

Remove one of the encrypted serial code.

Remove one of the encrypted serial code. #99

Workflow file for this run

name: Syntax Check
on: [push, pull_request]
jobs:
syntax-check:
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Checkout
uses: actions/checkout@v4
- name: Setup Virtual Environment
run: python -m venv venv
- name: Install requirements and Black
run: venv/bin/pip install -r requirements.txt black
- name: Check Black Formatter
run: venv/bin/black -l 120 --check .
- name: Check PyRight Syntax
run: |
set -e
source venv/bin/activate
npx pyright