More tweaks to install commands

This commit is contained in:
David Dworken 2024-02-09 19:04:02 -08:00
parent 078514439d
commit 64860f5028
No known key found for this signature in database

View File

@ -38,14 +38,14 @@ jobs:
if: ${{ matrix.distro == 'opensuse/leap:latest' }}
run: |
# Install our dependencies (no sudo for OpenSUSE)
zypper install --non-interactive zsh tmux fish make gcc psmisc
# Install our dependencies
zypper install -y zsh tmux fish make gcc psmisc
- name: Arch-based Setup
if: ${{ matrix.distro == 'archlinux:latest' }}
run: |
# Install our dependencies
pacman install --noconfirm zsh tmux fish make gcc psmisc
pacman install -Sy --noconfirm zsh tmux fish make gcc psmisc
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v3