-
-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (31 loc) · 954 Bytes
/
Copy pathrust-nightly.yml
File metadata and controls
40 lines (31 loc) · 954 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
37
38
39
40
name: Rust Nightly CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-and-test-nightly:
runs-on: ubuntu-latest
continue-on-error: true # Allow nightly builds to fail without failing the entire workflow
steps:
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y libfontconfig1-dev pkg-config
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Rust Nightly
uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt, clippy
- name: Build
run: cargo build --verbose
env:
CARGO_BUILD_JOBS: 2
- name: Run tests
run: cargo test --all --verbose
env:
CARGO_BUILD_JOBS: 2
- name: Run clippy (linter)
run: cargo clippy --all -- -D warnings
- name: Run fmt (format check)
run: cargo fmt --all -- --check