feat: aiproxy service #5579
Workflow file for this run
This file contains 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: Check-Format-Code | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.yaml" | |
- "CONTRIBUTORS" | |
- "CHANGELOG/**" | |
pull_request: | |
branches: [ "*" ] | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.yaml" | |
- "CONTRIBUTORS" | |
- "CHANGELOG/**" | |
env: | |
# Common versions | |
GO_VERSION: "1.23" | |
jobs: | |
format-code: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.head_ref }} | |
- name: Setup Golang with cache | |
uses: magnetikonline/action-golang-cache@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Format Code | |
run: make format | |
- name: Commit Changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "chore(fmt): format code" | |
commit_options: "-s" |