summaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust.yml
blob: 1cba5e0573d276ed1b47ec3c8dcfd052a58005ad (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
name: Rust

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Build (Default)
      run: cargo build --verbose
    - name: Run tests (Default)
      run: cargo test --verbose
    - name: Build (Actix)
      run: cd ipfs-api; cargo build --verbose --features with-actix --no-default-features
    - name: Run tests (Actix)
      run: cd ipfs-api; cargo test --verbose --features with-actix --no-default-features
    - name: Build (Hyper with rustls)
      run: cd ipfs-api; cargo build --verbose --features with-hyper-rustls --no-default-features
    - name: Run tests (Hyper with rustls)
      run: cd ipfs-api; cargo test --verbose --features with-hyper-rustls --no-default-features