add parse function in /validate endpoint for SQL #312
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Dev Build | |
| on: | |
| pull_request: | |
| paths: | |
| - 'Makefile' | |
| - 'pyproject.toml' | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: prefix-dev/[email protected] | |
| with: | |
| pixi-version: v0.47.0 | |
| cache: true | |
| - run: pixi run make check-prereqs | |
| - run: pixi run make fe | |
| - run: pixi run make py |