forked from containers/libkrun
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (37 loc) · 1.26 KB
/
code_quality-x86_64.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
name: Code Quality (rustfmt and clippy)
on: [pull_request, create]
jobs:
build:
if: github.event_name == 'pull_request'
name: Code Quality (clippy, rustfmt)
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
target:
- x86_64-unknown-linux-gnu
steps:
- name: Code checkout
uses: actions/checkout@v2
- name: Install Rust toolchain (${{ matrix.rust }})
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
override: true
components: rustfmt, clippy
- name: Install packages
run: sudo apt-get update && sudo apt-get install -y libvirglrenderer-dev libepoxy-dev libdrm-dev
- name: Create a fake init
run: touch init/init
- name: Formatting (rustfmt)
run: cargo fmt -- --check
- name: Clippy (default features)
run: cargo clippy -- -D warnings
- name: Clippy (amd-sev feature)
run: cargo clippy --features amd-sev -- -D warnings
- name: Clippy (net feature)
run: cargo clippy --features net -- -D warnings
- name: Clippy (blk+gpu feature)
run: cargo clippy --features blk,gpu -- -D warnings