-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (45 loc) · 1.38 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
50
51
52
53
54
55
name: Rust CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
rust-version: [stable, beta]
steps:
- uses: actions/checkout@v4
- name: Set up Rust ${{ matrix.rust-version }}
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust-version }}
- name: Cache cargo registry
uses: actions/cache@v3
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: Cache cargo index
uses: actions/cache@v3
with:
path: ~/.cargo/git
key: ${{ runner.os }}-cargo-git-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-git-
- name: Check toolchain
run: rustc --version
- name: Build
run: cargo build --verbose
working-directory: ./rust
- name: Run tests
run: cargo test --verbose --lib --release
working-directory: ./rust
env:
SPIDER_API_KEY: ${{ secrets.SPIDER_API_KEY }}
SPIDER_EMAIL: ${{ secrets.SPIDER_EMAIL }}
SPIDER_PASSWORD: ${{ secrets.SPIDER_PASSWORD }}
SUPABASE_AUTO_REFRESH_TOKEN: "false"