-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (42 loc) · 1.05 KB
/
pr.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
49
50
51
name: 'Check PR'
on:
pull_request
defaults:
run:
shell: bash
jobs:
kotlin-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: gradle test
uses: ./.github/actions/build
with:
args: >-
test
compileIntegrationTestKotlin
:build-logic:check
:library:apiCheck
python-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- run: pip install -r .github/scripts/requirements.txt
- name: 'unittest discover'
run: python3 -m unittest discover -bs .github/scripts
readme-links-test:
uses: ./.github/workflows/test-readme-links.yml
dry-run-publish-javadoc:
uses: ./.github/workflows/publish-javadoc.yml
with:
dry_run: true
dry-run-publish-library:
uses: ./.github/workflows/publish-library.yml
with:
dry_run: true
dry-run-update-api-spec:
uses: ./.github/workflows/update-api-spec.yml
with:
dry_run: true