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