diff options
author | Till <2353100+S7evinK@users.noreply.github.com> | 2023-04-27 16:43:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-27 16:43:28 +0200 |
commit | c6457cd4e551017246af7ddcece212edfb927076 (patch) | |
tree | 22f349df20534322ddafaed9a7d42ba9956b2ec3 /.github | |
parent | b189edf4f43ff34b69d6c60aeb0efb60dd549c86 (diff) |
Add CS API `/keys` tests (#3069)
This is slightly cheating, as the heavy lifting, with regards to key
generation, is done using `mautrix/go`.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/dendrite.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/dendrite.yml b/.github/workflows/dendrite.yml index 17f02b09..85fd355f 100644 --- a/.github/workflows/dendrite.yml +++ b/.github/workflows/dendrite.yml @@ -67,6 +67,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 + - name: Install libolm + run: sudo apt-get install libolm-dev libolm3 - name: Install Go uses: actions/setup-go@v3 with: @@ -101,6 +103,8 @@ jobs: --health-retries 5 steps: - uses: actions/checkout@v3 + - name: Install libolm + run: sudo apt-get install libolm-dev libolm3 - name: Setup go uses: actions/setup-go@v3 with: @@ -232,6 +236,8 @@ jobs: --health-retries 5 steps: - uses: actions/checkout@v3 + - name: Install libolm + run: sudo apt-get install libolm-dev libolm3 - name: Setup go uses: actions/setup-go@v3 with: |