Skip to content

chore: CI fixups

chore: CI fixups #789

Workflow file for this run

name: Check
on:
pull_request:
types: [opened, reopened, synchronize]
push:
branches:
- main
permissions:
contents: read
jobs:
run-checks:
name: Check python-${{ matrix.python-version }}, ${{ matrix.os }}
timeout-minutes: 5
strategy:
matrix:
os:
- "ubuntu-latest"
python-version:
- "3.12"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
persist-credentials: false
- uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6.8.0
- name: Check Python lint
run: uvx ruff check . --config pyproject.toml
- name: Check Python formatting
run: uvx ruff format --check . --config pyproject.toml
- name: Check Scenarios formatting
run: |
npm ci
npx prettier --check "scenarios/**/*.{toml,json,yaml}"
typos:
runs-on: ubuntu-latest
name: Check typos
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
persist-credentials: false
- uses: crate-ci/typos@2d0ce569feab1f8752f1dde43cc2f2aa53236e06 # v1.40.0