Skip to content

Commit 45ec10c

Browse files
committed
ci: Adapt CI to proton branch
1 parent 793d618 commit 45ec10c

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ main ]
66
pull_request:
7-
branches: [ main, v3 ]
7+
branches: [ main, Proton ]
88

99
jobs:
1010
build:
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go 1.x
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: ^1.16
23+
go-version: '^1.16'
2424
id: go
2525

2626
- name: Install NDK

.github/workflows/ios.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [ main ]
66
pull_request:
7-
branches: [ main, v3 ]
7+
branches: [ main, Proton ]
88

99
jobs:
1010
build:
@@ -18,10 +18,10 @@ jobs:
1818
xcode-version: 15.3.0
1919
id: xcode
2020

21-
- name: Set up Go 1.x
22-
uses: actions/setup-go@v2
21+
- name: Set up Go 1.22
22+
uses: actions/setup-go@v5
2323
with:
24-
go-version: ^1.16
24+
go-version: '1.22'
2525
id: go
2626

2727
- name: Checkout

.github/workflows/sop-test-suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: SOP interoperability test suite
22

33
on:
44
pull_request:
5-
branches: [ main, v3 ]
5+
branches: [ main, Proton ]
66

77
jobs:
88

.golangci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ issues:
2020
- ST1003 # CamelCase variables; see constants/cipher.go
2121
- missing output for example, go test can't validate it
2222
- variable 'hasExpiredEntity' is only used in the if-statement
23+
- SA1019
24+
- commentFormatting
2325
exclude-rules:
2426
- path: crypto/key_clear.go
2527
text: "SA1019"

0 commit comments

Comments
 (0)