From 5fd78647f20559c045907356e0b8acdf59a0362c Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 28 May 2023 20:03:51 +0200 Subject: [PATCH] ci: install pass on macOS for testing Signed-off-by: CrazyMax --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f05e9683..f3f03a22 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,11 +59,16 @@ jobs: go-version: ${{ env.GO_VERSION }} cache: true - - name: Install deps + name: Install deps (ubuntu) if: startsWith(matrix.os, 'ubuntu-') run: | sudo apt-get update sudo apt-get install -y dbus-x11 gnome-keyring libsecret-1-dev pass + - + name: Install deps (macOS) + if: startsWith(matrix.os, 'macOS-') + run: | + brew install pass - name: GPG conf if: startsWith(matrix.os, 'ubuntu-')