-
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (33 loc) · 752 Bytes
/
lint.yml
File metadata and controls
40 lines (33 loc) · 752 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
40
name: Lint
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
permissions:
contents: read
jobs:
actions:
uses: typisttech/.github/.github/workflows/lint-actions.yml@v3
php:
uses: typisttech/.github/.github/workflows/lint-php.yml@v3
with:
box: true
go:
uses: typisttech/.github/.github/workflows/lint-go.yml@v3
with:
golangci-lint: false
wait-for-all-lint:
needs:
- actions
- php
- go
runs-on: ubuntu-latest
steps:
- run: exit 0