Add max_tokens cap on gpt oss 20b #191
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] | |
| concurrency: | |
| group: linting-helm-and-terraform-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@v3 | |
| with: | |
| version: v3.12.0 | |
| - name: Helm lint all charts | |
| run: | | |
| for dir in $(find helm -maxdepth 2 -type f -name Chart.yaml | xargs -n1 dirname); do | |
| echo "Linting ${dir}" | |
| helm lint $dir | |
| done | |
| terraform: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Terraform | |
| uses: hashicorp/setup-terraform@v2 | |
| with: | |
| terraform_version: 1.6.0 | |
| - name: Terraform init & validate | |
| working-directory: terraform | |
| run: | | |
| terraform init -backend=false -input=false | |
| terraform validate |