Add Liquid LFM 2.5 1.2B Thinking model (free via OpenRouter) #362
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Build | |
| run: go build ./... | |
| - name: Test | |
| run: go test -cover $(go list ./... | grep -v /e2e) | |
| - name: Vet | |
| run: go vet ./... | |
| - name: E2E Smoke Tests | |
| run: go test ./e2e/ -v -count=1 -timeout 120s | |
| - name: Verify GoReleaser config | |
| uses: goreleaser/goreleaser-action@v6 | |
| with: | |
| version: "~> v2" | |
| args: check |