Skip to content

feat: ✨ add Gemini auth plugin #10

feat: ✨ add Gemini auth plugin

feat: ✨ add Gemini auth plugin #10

Workflow file for this run

---
name: Pull Request validation
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
concurrency:
group: pr-validation-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
id: checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Detect changed files
id: changed-files
uses: tj-actions/changed-files@v46
with:
files: |
Dockerfile
- name: Setup toolchain with mise
uses: jdx/mise-action@v2
- name: Run prek hooks
run: prek run --all-files --show-diff-on-failure --color=always
- name: Build Docker image if Dockerfile changed
if: steps.changed-files.outputs.any_changed == 'true'
run: |
docker build -t opencode-cli-pr:latest .