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