diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 118bf86..d0592d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,15 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Build + - name: Run Check + run: cargo check --verbose + - name: Run Build run: cargo build --verbose - - name: Run tests + - name: Run Tests run: cargo test --verbose + - name: Install MSRV + with: + toolchain: 1.60.0 + override: true + - name: Run MSRV + run: cargo build