fix: configure release-please to bump pyproject.toml version #26
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: Validate | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| shellcheck: | |
| name: ShellCheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run ShellCheck | |
| uses: ludeeus/action-shellcheck@2.0.0 | |
| with: | |
| scandir: .devcontainer/scripts | |
| severity: warning | |
| compose: | |
| name: Compose Config | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate compose config | |
| run: | | |
| cp .devcontainer/.env.example .devcontainer/.env | |
| docker compose -f .devcontainer/compose.yaml config --quiet | |
| build: | |
| name: Devcontainer Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build devcontainer | |
| uses: devcontainers/ci@v0.3 | |
| with: | |
| runCmd: echo "devcontainer smoke test passed" |