-
Notifications
You must be signed in to change notification settings - Fork 6
48 lines (48 loc) · 1.07 KB
/
integration.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: Integration
on:
pull_request:
branches: [ main ]
paths:
- '**.api'
- '**.kt'
- '**.kts'
- .github/workflows/integration.yml
- gradle/**
- gradle.properties
- gradlew
- gradlew.bat
- yarn.lock
push:
branches: [ main ]
paths:
- '**.api'
- '**.kt'
- '**.kts'
- .github/workflows/integration.yml
- gradle/**
- gradle.properties
- gradlew
- gradlew.bat
- yarn.lock
workflow_dispatch:
jobs:
checks:
name: Checks
runs-on: macos-12
strategy:
matrix:
project: [ plugins, types-internal, types, types-kotlinx-serialization ]
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Setup Java
uses: actions/[email protected]
with:
distribution: temurin
java-version: 17
- name: Setup Gradle
uses: gradle/actions/[email protected]
- name: Run all checks
run: ./gradlew :$PROJECT:check
env:
PROJECT: ${{ matrix.project }}