From 3b7f0fedac58a0994cf7aec33c580a63a13a95e0 Mon Sep 17 00:00:00 2001 From: Buck Doyle Date: Sun, 29 Oct 2023 09:57:07 -0400 Subject: [PATCH] Fix location of schema file --- .github/workflows/ci-unmnemonic-devices-vrs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-unmnemonic-devices-vrs.yml b/.github/workflows/ci-unmnemonic-devices-vrs.yml index 40cfc0e5..e8fb56cf 100644 --- a/.github/workflows/ci-unmnemonic-devices-vrs.yml +++ b/.github/workflows/ci-unmnemonic-devices-vrs.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up database - run: psql -f unmnemonic_devices_vrs/tests/api/fixtures/schema.sql postgres://postgres:postgres@localhost:5432/postgres + run: psql -f unmnemonic_devices_vrs/tests/fixtures/schema.sql postgres://postgres:postgres@localhost:5432/postgres - uses: dtolnay/rust-toolchain@1.68.2 - uses: Swatinem/rust-cache@v2 - name: Run tests @@ -53,7 +53,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up database - run: psql -f unmnemonic_devices_vrs/tests/api/fixtures/schema.sql postgres://postgres:postgres@localhost:5432/postgres + run: psql -f unmnemonic_devices_vrs/tests/fixtures/schema.sql postgres://postgres:postgres@localhost:5432/postgres - uses: dtolnay/rust-toolchain@1.68.2 with: components: clippy @@ -79,7 +79,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - name: Set up database - run: psql -f unmnemonic_devices_vrs/tests/api/fixtures/schema.sql postgres://postgres:postgres@localhost:5432/postgres + run: psql -f unmnemonic_devices_vrs/tests/fixtures/schema.sql postgres://postgres:postgres@localhost:5432/postgres - uses: dtolnay/rust-toolchain@1.68.2 - name: Install postgresql-client run: sudo apt-get update && sudo apt-get install postgresql-client -y