This repository was archived by the owner on Mar 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
64 lines (49 loc) · 1.59 KB
/
build-and-test.yml
File metadata and controls
64 lines (49 loc) · 1.59 KB
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
62
63
on: [ push, pull_request ]
name: Build and tests
jobs:
test:
strategy:
matrix:
os: [ ubuntu-latest ]
rust-toolchain: [ stable ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust-toolchain }}
components: rustfmt
override: true
- name: Install NodeJS
uses: actions/setup-node@v1
- name: Install Build Essentials
run: sudo apt-get install build-essential mingw-w64 gcc
- name: Verify versions
run: rustc --version && rustup --version && cargo --version && node --version && npm --version
- name: Cache build artifacts
id: cache-cargo
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ matrix.rust-toolchain }}
- name: Cache integration artifacts
id: cache-integration
uses: actions/cache@v2
with:
path: |
tests/integration/runner/node_modules
key: ${{ runner.os }}-integration-${{ matrix.rust-toolchain }}
- name: Build RedisLess
run: cd redisless && cargo build --release
- name: Test RedisLess
run: cd redisless && cargo test
# - name: Bench RedisLess
# run: cd redisless && cargo bench
- name: Check RedisLess code style
run: cd redisless && cargo fmt -- --check