-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 814 Bytes
/
rust.yml
File metadata and controls
36 lines (33 loc) · 814 Bytes
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
name: Cargo Build & Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
SQLX_OFFLINE: true
jobs:
build_and_test:
name: Persepolis
runs-on: ubuntu-latest
defaults:
run:
working-directory: .
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ matrix.toolchain }}
workspaces: ".-> target"
- name: Install lld
run: sudo apt-get install -y lld
- name: Install mold
run: sudo apt-get install -y mold
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --verbose
- run: cargo test --verbose