diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index a483e2e..01faf00 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -68,6 +68,13 @@ jobs: args: --manifest-path tests/Cargo.toml --features sqlite - name: Install Diesel-CLI + if: ${{ matrix.rust != 'stable' }} + run: | + cargo install --features postgres --no-default-features diesel_cli@2.0.1 + diesel --help + + - name: Install Diesel-CLI + if: ${{ matrix.rust == 'stable' }} run: | cargo install --features postgres --no-default-features diesel_cli diesel --help