Skip to content

fix: table name

fix: table name #4

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: main
cancel-in-progress: true
permissions:
contents: read
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: 'Pre-commit checks'
uses: ./.github/workflows/templates/checks
with:
python_version: "3.11"
pre_commit_version: "4.0.1"
directory: "."
- name: 'Pyright type checks'
run: ./.github/workflows/templates/pyright_type_checks
with:

Check failure on line 32 in .github/workflows/build.yaml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build.yaml (Line: 32, Col: 9): Unexpected value 'with'
python_version: "3.11"
pyright_version: "1.1.385"
tests:
runs-on: ubuntu-latest
needs: checks
steps:
- name: checkout
uses: actions/checkout@v4
- name: 'tests'
uses: ./.github/workflows/templates/tests
with:
python_version: "3.11"
uv_version: "0.4.12"
directory: "."