Validate LiteLLM config candidates #39
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| cache: true | |
| - name: Check formatting | |
| run: make fmt-check | |
| - name: Run lint | |
| run: make lint | |
| - name: Run tests | |
| run: make test | |
| - name: Build stamped binary | |
| run: make build VERSION=0.1.0-ci | |
| - name: Build release artifacts | |
| run: make release-dist VERSION=0.1.0-ci |