From 9b5a0a36af47a934f984125fecf580ecff9a378f Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Sat, 17 Jan 2026 06:45:10 -0500 Subject: [PATCH] fix --- .github/workflows/compatibility.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/compatibility.yaml b/.github/workflows/compatibility.yaml index 738c261..1e64217 100644 --- a/.github/workflows/compatibility.yaml +++ b/.github/workflows/compatibility.yaml @@ -21,16 +21,16 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install dependencies + run: | + sudo apt-get update + sudo apt-get install -y curl gnupg git python3-docutils + - name: Tool versions (check) run: | gpg --version git --version - - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install -y git curl python3-docutils - - name: Run Tests run: make test @@ -42,17 +42,17 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Install Shells + run: | + sudo apt-get update + sudo apt-get install -y zsh fish + - name: Tool versions (check) run: | bash --version zsh --version fish --version - - name: Install Shells - run: | - sudo apt-get update - sudo apt-get install -y zsh fish - - name: Generate Completions (if not up to date) run: make generate -- 2.52.0