Auto? #31
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
pull_request: | |
branches: | |
- main | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Aftman | |
uses: ok-nick/setup-aftman@v0.4.2 | |
with: | |
token: ${{ github.token }} | |
- name: Analyze | |
run: sh scripts/analyse.sh | |
style: | |
name: Styling | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Check code style | |
uses: JohnnyMorganz/stylua-action@v4 | |
with: | |
token: ${{ github.token }} | |
version: latest | |
args: --check src | |
continue-on-error: true | |
- name: Fix code style issues | |
uses: JohnnyMorganz/stylua-action@v4 | |
with: | |
token: ${{ github.token }} | |
version: latest | |
args: src | |
- name: Commit changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: "[auto]: fix code style issues" | |
commit_options: "--no-verify" | |
branch: ${{ github.head_ref }} |