aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
blob: c9c35b0692cb193c1e516f57758b9d83bfecfac1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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_custom_highlighter
      cargo lint
  - test: |
      cd iced_custom_highlighter
      cargo test --verbose --doc
      cargo test --verbose --all-targets