We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27b761d commit 8f4e4b5Copy full SHA for 8f4e4b5
.github/workflows/ci.yml
@@ -130,7 +130,7 @@ jobs:
130
- name: Clean up the database
131
run: docker-compose down --volumes
132
133
- GUIs_test:
+ GUI_test:
134
runs-on: ubuntu-latest
135
needs: build
136
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