Skip to content

Commit

Permalink
Separated steps to install diesel-cli.
Browse files Browse the repository at this point in the history
  • Loading branch information
yagince committed Jan 5, 2024
1 parent 10f8e42 commit 7c34a16
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected]
diesel --help
- name: Install Diesel-CLI
if: ${{ matrix.rust == 'stable' }}
run: |
cargo install --features postgres --no-default-features diesel_cli
diesel --help
Expand Down

0 comments on commit 7c34a16

Please sign in to comment.