We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2869a8 commit 7fc7682Copy full SHA for 7fc7682
.github/workflows/android.yml
@@ -36,5 +36,22 @@ jobs:
36
- name: Run tests
37
run: make test
38
39
+ lint:
40
+ runs-on: ubuntu-latest
41
+
42
+ if: "!contains(github.event.head_commit.message, '[ci skip]')"
43
44
+ steps:
45
+ - name: Check out code
46
+ uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
47
+ - uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
48
+ with:
49
+ go-version-file: "go.mod"
50
+ - name: Switch to Java 17 # Note: 17 is pre-installed on ubuntu-latest
51
+ uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
52
53
+ distribution: "temurin"
54
+ java-version: "17"
55
56
- name: Run lint
57
run: make lint-ci
0 commit comments