forked from Byron/google-apis-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (35 loc) · 938 Bytes
/
rust.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
name: Rust
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Run clippy
run: |
cargo clippy -- -D warnings
build-and-test:
runs-on: ubuntu-latest
env:
# The environment variable is set to test only on a few selected APIs,
# speeding up the integration process. See etc/api/api-list-ci.yaml.
CI: true
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Run tests
run: |
source ~/.profile
cargo test
make test-gen
make gen-all-cli cargo-api ARGS=test
make cargo-api ARGS='check --no-default-features'
make cargo-api ARGS=check
make cargo-api ARGS=doc
make cargo-cli ARGS=check
make docs-all