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

matrix:
  SERVICE:
    - hello
    - joiner
  RUST_VERSION:
    - latest
    - 1.50.0