Skip to content

Commit

Permalink
ci: try install diesel cli
Browse files Browse the repository at this point in the history
  • Loading branch information
adwhit committed Nov 10, 2022
1 parent 329d52f commit 83bf50b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,8 @@ jobs:
with:
command: test
args: --manifest-path tests/Cargo.toml --features sqlite

- name: Install Diesel-CLI
run: |
cargo install --features postgres --no-default-features diesel_cli
diesel --help
2 changes: 1 addition & 1 deletion tests/src/pg_remote_type.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ fn enum_round_trip() {

connection.batch_execute(
r#"
CREATE TYPE my_remote_enum AS ENUM ('foo', 'bar', 'baz_quxx');
CREATE TYPE my_remote_enum AS ENUM ('this', 'that');
CREATE TABLE test_remote (
id SERIAL PRIMARY KEY,
my_enum my_remote_enum NOT NULL
Expand Down

0 comments on commit 83bf50b

Please sign in to comment.