summaryrefslogtreecommitdiffstats
path: root/.github/workflows/rust-macos-main.yml
blob: bc5b1a8ce773fbf1a6336352656ca870a438153c (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
name: MacOS build

on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

jobs:
  check:
    name: Rust MacOS ${{ matrix.rust }}
    runs-on: macos-latest
    strategy:
      matrix:
        rust: [stable]
    steps:
      - uses: actions/checkout@v2
      - name: Install minimal ${{ matrix.rust }} rust
        uses: actions-rs/toolchain@v1
        with:
          override: true
          profile: minimal
          toolchain: ${{ matrix.rust }}
      - run: cargo -Vv && rustc -Vv
      - run: cargo check
      - run: cargo check --all-features
        if: ${{ matrix.rust == 'stable' }}
      - run: cargo fmt --all -- --check
        if: ${{ matrix.rust == 'stable' }}
      - run: cargo test
        if: ${{ matrix.rust == 'stable' }}