blob: a620df4bb810561b8ac0bede1df70dce32111a3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
image: ubuntu/noble
packages:
- rustup
- pkg-config
- libxkbcommon-dev
- libssl-dev
triggers:
- action: email
condition: failure
to: "<~pml68/dev@lists.sr.ht>"
tasks:
- rust-setup: |
rustup toolchain install stable --profile default -c clippy
rustup default stable
- lint: |
cd iced_material
cargo lint
- test: |
cd iced_material
cargo test --verbose --doc
cargo test --verbose --all-targets
- build-example: |
cd iced_material
cargo build --example styling
|