blob: 8f7aa1d9f5c46b187740f7d9f75f74178d96cc97 (
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
25
26
|
image: ubuntu/noble
packages:
- rustup
- pkg-config
- libxkbcommon-dev
- libssl-dev
triggers:
- action: email
condition: failure
to: "<~pml68/iced-crates@lists.sr.ht>"
tasks:
- rust-setup: |
rustup toolchain install stable --profile default -c clippy
rustup default stable
- lint: |
cd iced_selection
cargo lint
- test: |
cd iced_selection
cargo test --verbose --doc
cargo test --verbose --all-targets
- build-examples: |
cd iced_selection
cargo build --package name
cargo build --package rich
cargo build --package markdown
|