From 278893ef8ebc9656cd1523cb8b361cf83a23dafa Mon Sep 17 00:00:00 2001 From: project-repo Date: Thu, 20 Apr 2023 13:09:30 +0200 Subject: [PATCH] Install git before action --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 034c39d..589b0d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,11 +8,11 @@ jobs: container: image: archlinux:latest steps: + - run: pacman-key --init + - run: pacman -Syu --noconfirm git sudo - uses: actions/checkout@v2 with: fetch-depth: 0 - - run: pacman-key --init - - run: pacman -Syu --noconfirm git sudo - run: bash scripts/install-development-environment - run: | for commit in $(git rev-list ${{ github.base_ref }}..${{ github.head_ref }}); do