summaryrefslogtreecommitdiffstats
path: root/.woodpecker/rust-ci.yml
blob: ce52fe10ef96096606cf7f400d56a6c90da3e351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pipeline:
  check-service:
    image: rust:${RUST_VERSION}
    pull: true
    commands:
      - echo "Using rust:${RUST_VERSION} on service-${SERVICE}"
      - cd service-${SERVICE}
      - cargo check
    when:
      event: [ push, pull_request ]

matrix:
  SERVICE:
    - hello
    - world
    - joiner
    - person
  RUST_VERSION:
    - latest
    - 1.54.0