From f301929d758b61cc6f5e86157a2e6f40373d4565 Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Fri, 18 Jun 2021 14:33:49 +0200 Subject: [PATCH] Formatting --- .github/workflows/ci.cue | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.cue b/.github/workflows/ci.cue index f214a53..9c64229 100644 --- a/.github/workflows/ci.cue +++ b/.github/workflows/ci.cue @@ -55,16 +55,20 @@ jobs: #Jobs & { } steps: [ {uses: "actions/checkout@v2"}, - {name: "Update apt-get database" - run: "apt-get update" + { + name: "Update apt-get database" + run: "apt-get update" }, - {name: "Install libsodium" - run: "apt-get install -y libsodium-dev" + { + name: "Install libsodium" + run: "apt-get install -y libsodium-dev" }, - {name: "Compile source code" - run: "make compile" + { + name: "Compile source code" + run: "make compile" }, - {name: "Run the tests" - run: "make tests" + { + name: "Run the tests" + run: "make tests" }] }}