feat!: use sqlite for all commands #379
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: build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| build: | |
| name: build:required | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6 | |
| - uses: ./.github/actions/prepare | |
| - name: Build | |
| run: uv build | |
| - name: Check package | |
| run: | | |
| uv run twine check --strict dist/* | |
| uv run check-wheel-contents dist/ |