forked from temporalio/sdk-core
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (29 loc) · 833 Bytes
/
heavy.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
name: Heavy Tests
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
timeout-minutes: 20
runs-on: ubuntu-latest-16-cores
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions-rs/cargo@v1
with:
command: integ-test
args: -c "--release" -c "--features=save_wf_inputs" -t heavy_tests -- --test-threads 1