fix sequence to dict.

This commit is contained in:
Jesper Louis Andersen 2021-06-15 14:35:37 +02:00
parent f99c8643f0
commit e59656ebf6
2 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@ jobs: ci: {
} }
steps: [ steps: [
{uses: "actions/checkout@v2"}, {uses: "actions/checkout@v2"},
[{name: "Install libsodium"}, {name: "Install libsodium",
{run: "apt-get install -y libsodium-dev"}], run: "apt-get install -y libsodium-dev"},
{run: "make compile"}, {run: "make compile"},
{run: "make tests"}] {run: "make tests"}]
} }

View File

@ -20,7 +20,7 @@ jobs:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- - name: Install libsodium - name: Install libsodium
- run: apt-get install -y libsodium-dev run: apt-get install -y libsodium-dev
- run: make compile - run: make compile
- run: make tests - run: make tests