From 5f22892ce40cb897a1b5907910d0d1268988d2fd Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Tue, 15 Jun 2021 14:36:55 +0200 Subject: [PATCH] More QoL interaction. --- .github/workflows/ci.cue | 6 ++++-- .github/workflows/ci.yaml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.cue b/.github/workflows/ci.cue index 4f77f49..509a803 100644 --- a/.github/workflows/ci.cue +++ b/.github/workflows/ci.cue @@ -24,6 +24,8 @@ jobs: ci: { {uses: "actions/checkout@v2"}, {name: "Install libsodium", run: "apt-get install -y libsodium-dev"}, - {run: "make compile"}, - {run: "make tests"}] + {name: "Compile source code", + run: "make compile"}, + {name: "Run the tests", + run: "make tests"}] } diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 48144b0..182af0f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,5 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: Install libsodium run: apt-get install -y libsodium-dev - - run: make compile - - run: make tests + - name: Compile source code + run: make compile + - name: Run the tests + run: make tests