Skip to content

New/xline opeartor init #282

New/xline opeartor init

New/xline opeartor init #282

Workflow file for this run

name: CI
on:
schedule:
- cron: "00 19 * * *" # run ci periodically at 3 am
pull_request:
branches: [main]
env:
GO_VERSION: 1.21
jobs:
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{env.GO_VERSION}}
- name: Check format
run: |
output="$(gofmt -l .)"
if [ ${#output} -gt 0 ]; then
echo "gofmt fail"
exit 1
fi
shell: bash
lint:
name: Lint Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{env.GO_VERSION}}
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.54.2
commit:
name: Commit Message Validation
runs-on: ubuntu-latest
if: ${{ github.event_name != 'schedule' }}
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: git show-ref
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/[email protected]
with:
crate: git-cz
version: latest
- name: Validate commit messages
run: git-cz check ${{ github.event.pull_request.base.sha }}..${{ github.event.pull_request.head.sha }}
spell-check:
name: Spell Check
runs-on: ubuntu-latest
steps:
- name: Checkout Actions Repository
uses: actions/checkout@v2
- name: Check Spelling
uses: crate-ci/typos@master