From e59656ebf68b436f98f93196f6d61164c245f5eb Mon Sep 17 00:00:00 2001 From: Jesper Louis Andersen Date: Tue, 15 Jun 2021 14:35:37 +0200 Subject: [PATCH] fix sequence to dict. --- .github/workflows/ci.cue | 4 ++-- .github/workflows/ci.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.cue b/.github/workflows/ci.cue index e491372..4f77f49 100644 --- a/.github/workflows/ci.cue +++ b/.github/workflows/ci.cue @@ -22,8 +22,8 @@ jobs: ci: { } steps: [ {uses: "actions/checkout@v2"}, - [{name: "Install libsodium"}, - {run: "apt-get install -y libsodium-dev"}], + {name: "Install libsodium", + run: "apt-get install -y libsodium-dev"}, {run: "make compile"}, {run: "make tests"}] } diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7b518e8..48144b0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: - ubuntu-latest steps: - uses: actions/checkout@v2 - - - name: Install libsodium - - run: apt-get install -y libsodium-dev + - name: Install libsodium + run: apt-get install -y libsodium-dev - run: make compile - run: make tests