From a68d7038623a1c9bafd4e78d56270448c5cc4b8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Ri=C3=9Fe?= Date: Thu, 18 Apr 2024 17:25:32 +0200 Subject: [PATCH] Install git-annex in the testing workflow --- .forgejo/workflows/testing.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.forgejo/workflows/testing.yml b/.forgejo/workflows/testing.yml index 1e53cf6895..4c9c8ee081 100644 --- a/.forgejo/workflows/testing.yml +++ b/.forgejo/workflows/testing.yml @@ -77,6 +77,11 @@ jobs: - uses: https://code.forgejo.org/actions/setup-go@v4 with: go-version: "1.20" + - name: install dependencies + run: | + export DEBIAN_FRONTEND=noninteractive + apt-get update -qq + apt-get install --no-install-recommends -qq -y git-annex - run: | git config --add safe.directory '*' chown -R gitea:gitea . /go @@ -110,6 +115,11 @@ jobs: - uses: https://code.forgejo.org/actions/setup-go@v4 with: go-version: "1.20" + - name: install dependencies + run: | + export DEBIAN_FRONTEND=noninteractive + apt-get update -qq + apt-get install --no-install-recommends -qq -y git-annex - run: | git config --add safe.directory '*' chown -R gitea:gitea . /go @@ -137,6 +147,11 @@ jobs: - uses: https://code.forgejo.org/actions/setup-go@v4 with: go-version: "1.20" + - name: install dependencies + run: | + export DEBIAN_FRONTEND=noninteractive + apt-get update -qq + apt-get install --no-install-recommends -qq -y git-annex - run: | git config --add safe.directory '*' chown -R gitea:gitea . /go