-
Notifications
You must be signed in to change notification settings - Fork 8
48 lines (40 loc) · 1.33 KB
/
ci.yml
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
41
42
43
44
45
46
47
48
name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
env:
GOPRIVATE: github.com/platformsh/platformify
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
# do not enable cache here, because golangci-linter
# has its own internal cache with better performance
go-version: 1.20.x
- name: Configure git for private modules
env:
TOKEN: ${{ secrets.AKALIPETIS_PAT }}
run: git config --global url."https://akalipetis:${TOKEN}@github.com".insteadOf "https://github.com"
- name: Create fake PHP and .phar files
run: |
# These are needed so that the linter does not complain
touch internal/legacy/archives/platform.phar
touch internal/legacy/archives/php_windows_amd64
touch internal/legacy/archives/php_linux_amd64
touch internal/legacy/archives/php_linux_arm64
touch internal/legacy/archives/php_darwin_amd64
touch internal/legacy/archives/php_darwin_arm64
touch internal/config/embedded-config.yaml
- name: Run linter
uses: golangci/golangci-lint-action@v3
with:
version: v1.52