aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
blob: efc779f49e3653c5ec2fccb1683dcd368c4682da (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: CI

on:
  pull_request:
  push:
    branches:
      - staging
      - trying

jobs:
  msrv:
    name: Rust MSRV
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: dtolnay/rust-toolchain@1.36.0
      - run: cargo check --no-default-features
      - run: cargo check --no-default-features --features "use_alloc"
      - run: cargo check

  stable:
    name: Rust Stable
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo check --no-default-features
      - run: cargo check --no-default-features --features "use_alloc"
      - run: cargo test

  # https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
  end-success:
    name: bors build finished
    if: success()
    runs-on: ubuntu-latest
    needs: [msrv,stable]

    steps:
      - name: Mark the job as successful
        run: exit 0

  end-failure:
    name: bors build finished
    if: "!success()"
    runs-on: ubuntu-latest
    needs: [msrv,stable]

    steps:
      - name: Mark the job as a failure
        run: exit 1