aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/rust.yml
blob: dd2ef4f4722b415c9b01e4a28c07e4e7d8a93449 (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: Cargo Build & Test

on:
  push:
  pull_request:

env:
  CARGO_TERM_COLOR: always

jobs:
  build_and_test:
    name: karyon - latest
    runs-on: ubuntu-latest
    strategy:
      matrix:
        toolchain:
          - stable
    steps:
      - uses: actions/checkout@v3
      - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
      - name: Build with smol
        run: cargo build --workspace  --verbose
      - name: Build with tokio
        run: cargo build --workspace --no-default-features --features tokio --verbose
      - name: Run tests
        run: cargo test --workspace --verbose
      - name: Run clippy 
        run: cargo clippy -- -D warnings
      - name: Run fmt  
        run: cargo fmt --all -- --check