Skip to content

Add CI workflow for running unittests. #184

Add CI workflow for running unittests.

Add CI workflow for running unittests. #184

Workflow file for this run

name: Lint and check
on: [ pull_request ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Run ruff linter:
- uses: chartboost/ruff-action@v1
# Run ruff linter for formatting:
- uses: chartboost/ruff-action@v1
with:
args: 'format --check'