-
Notifications
You must be signed in to change notification settings - Fork 16
61 lines (51 loc) · 1.39 KB
/
_check.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
52
53
54
55
56
57
58
59
60
61
name: Check and Test
on:
workflow_call:
inputs:
os:
required: true
type: string
rust:
required: true
type: string
jobs:
check-and-test:
name: '${{ inputs.os }}, ${{ inputs.rust }}'
runs-on: ${{ inputs.os }}
# Unfortunately, we can't do this right now because `indexmap` does not seem to follow semver.
# env:
# RUSTFLAGS: -D warnings -D missing-docs
steps:
- uses: actions/checkout@v2
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install Rust (${{ inputs.rust }})
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ inputs.rust }}
override: true
- uses: Swatinem/rust-cache@v1
- name: Check (all features)
uses: actions-rs/cargo@v1
with:
command: ci-check-all
- name: Check (INX only)
if: contains(inputs.os, 'ubuntu')
uses: actions-rs/cargo@v1
with:
command: ci-check-inx
- name: Check (API only)
if: contains(inputs.os, 'ubuntu')
uses: actions-rs/cargo@v1
with:
command: ci-check-api
- name: Test
uses: actions-rs/cargo@v1
with:
command: ci-test
- name: Doc Test
uses: actions-rs/cargo@v1
with:
command: ci-doctest