-
-
Notifications
You must be signed in to change notification settings - Fork 23
39 lines (32 loc) · 759 Bytes
/
lint-application.yml
File metadata and controls
39 lines (32 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
name: Lint application
# yamllint disable-line rule:truthy
on:
push:
branches:
- dev
pull_request:
types:
- opened
- synchronize
workflow_dispatch: {}
env:
STATIC_EXPORT: "true"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
go-lint:
name: Go lint
container:
image: ghcr.io/${{ github.repository }}/ci-build-ubuntu:latest
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Go
uses: ./.github/actions/setup-go
- name: Build client project
uses: ./.github/actions/build-client-web
- name: Lint application
uses: golangci/golangci-lint-action@v9