-
Notifications
You must be signed in to change notification settings - Fork 38
40 lines (31 loc) · 911 Bytes
/
pr.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
name: PR
permissions: read-all
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
trunk_check:
name: Trunk Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly
- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev
- name: Cargo Build Minimal Example
run: cargo build --example minimal
- name: Cargo Build Krypta Example
run: cargo build --example krypta
- name: Cargo Build Movement Example
run: cargo build --example movement
- name: Trunk Check
uses: trunk-io/trunk-action@v1
with:
cache: true