We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d59d0e6 commit 0503e25Copy full SHA for 0503e25
.github/workflows/ci.yml
@@ -126,7 +126,7 @@ jobs:
126
- name: Clean up the database
127
run: docker-compose down --volumes
128
129
- GUIs_test:
+ GUI_test:
130
runs-on: ubuntu-latest
131
needs: build
132
steps:
dockerfiles/run-gui-tests.sh
@@ -12,12 +12,11 @@ cargo run -- build crate sysinfo 0.23.5
12
cargo run -- build add-essential-files
13
14
# In case we don't have a `.env`, we create one.
15
-if [ ! -f .env ]
16
-then
+if [ ! -f .env ]; then
17
cp .env.sample .env
18
-. .env
19
fi
20
+. .env
21
cargo run -- start-web-server &
22
SERVER_PID=$!
23
0 commit comments