-
Notifications
You must be signed in to change notification settings - Fork 7
61 lines (51 loc) · 1.66 KB
/
ci.yaml
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
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
fmt:
name: Check Formatting
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Cache cargo dependencies
uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --check --all
check:
name: Lint and Build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install bevy dependencies
run: |
sudo apt-get update && sudo apt-get install -y \
g++ pkg-config libx11-dev libasound2-dev libudev-dev libopenxr-loader1 libopenxr-dev
- name: Cache cargo dependencies
uses: Swatinem/rust-cache@v2
- name: Clippy lints
run: cargo clippy --all --all-features --all-targets --no-deps -- -D warnings
- name: Cargo Doc
run: RUSTDOCFLAGS="-D warnings" cargo doc --all --all-features --no-deps --document-private-items
test:
name: Run Tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install bevy dependencies
run: |
sudo apt-get update && sudo apt-get install -y \
g++ pkg-config libx11-dev libasound2-dev libudev-dev libopenxr-loader1 libopenxr-dev mesa-vulkan-drivers xvfb libxkbcommon-x11-0
- name: Cache cargo dependencies
uses: Swatinem/rust-cache@v2
- name: Test
run: xvfb-run cargo test --all --all-features --all-targets
- name: Upload screenshots to artifacts
uses: actions/upload-artifact@v3
with:
path: "**/tests/screnshots"
name: screenshots
retention-days: 1