Skip to content

Commit 8f4e4b5

Browse files
GuillaumeGomezsyphar
authored andcommitted
Fix missing environment setup
1 parent 27b761d commit 8f4e4b5

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
- name: Clean up the database
131131
run: docker-compose down --volumes
132132

133-
GUIs_test:
133+
GUI_test:
134134
runs-on: ubuntu-latest
135135
needs: build
136136
steps:

dockerfiles/run-gui-tests.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ cargo run -- build crate sysinfo 0.23.5
1212
cargo run -- build add-essential-files
1313

1414
# In case we don't have a `.env`, we create one.
15-
if [ ! -f .env ]
16-
then
15+
if [ ! -f .env ]; then
1716
cp .env.sample .env
18-
. .env
1917
fi
2018

19+
. .env
2120
cargo run -- start-web-server &
2221
SERVER_PID=$!
2322

0 commit comments

Comments
 (0)