glog/.gitea/workflows/verify.yml

38 lines
707 B
YAML
Raw Normal View History

2024-01-24 00:07:00 +08:00
name: Verify
env:
TZ: Etc/GMT-8
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
lint:
strategy:
matrix:
2024-01-24 00:15:07 +08:00
go: ['1.19.13', '>=1.20']
2024-01-24 00:07:00 +08:00
fail-fast: true
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: https://github.com/actions/checkout@v4
- name: Setup Go ${{ matrix.go }}
uses: https://github.com/actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache: false
- name: Run GolangCI-Lint
uses: https://github.com/golangci/golangci-lint-action@v3
with:
version: v1.54
args: --timeout=5m