-
Notifications
You must be signed in to change notification settings - Fork 8
49 lines (45 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
#
# Configuration for GitHub-based CI, based on the stock GitHub Rust config.
#
name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
check-style:
runs-on: ubuntu-latest
steps:
# actions/checkout@v2
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions-rs/toolchain@88dc2356392166efad76775c878094f4e83ff746
with:
toolchain: stable
default: false
components: rustfmt
- name: Check style
run: cargo fmt -- --check
check-without-cockroach:
runs-on: ubuntu-latest
steps:
# actions/checkout@v2
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Cargo check
run: cargo check --no-default-features
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-12 ]
steps:
# actions/checkout@v2
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Download CockroachDB
run: ./tools/ci_download_cockroachdb
- name: Add CockroachDB to PATH
run: echo ./out/cockroachdb/bin >> $GITHUB_PATH
- name: Build
run: cargo build --tests --verbose
- name: Run tests
run: cargo test --verbose