aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
blob: cde34c44bcec1e466bf6263ca0bf3aebc5d7ac83 (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/dev@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