Skip to content

Commit

Permalink
Add smoke tests for arch
Browse files Browse the repository at this point in the history
  • Loading branch information
ddworken authored Feb 10, 2024
1 parent 266d5ff commit 1f7c3ab
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/distro-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
test:
strategy:
matrix:
distro: ['ubuntu:latest', 'fedora:latest', 'debian:latest', 'opensuse/leap:latest', 'rockylinux:latest']
distro: ['ubuntu:latest', 'fedora:latest', 'debian:latest', 'opensuse/leap:latest', 'rockylinux:latest', 'archlinux:latest']
fail-fast: false
runs-on: ubuntu-latest
container: ${{ matrix.distro }}
Expand All @@ -39,6 +39,12 @@ jobs:
# Install our dependencies
sudo dnf update -y
sudo dnf install -y zsh tmux fish make gcc psmisc
- name: Arch-based Setup
if: ${{ matrix.distro == 'archlinux:latest' }}
run: |
# Install our dependencies
sudo pacman install -y zsh tmux fish make gcc psmisc
- name: Go test
env:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
Expand Down

0 comments on commit 1f7c3ab

Please sign in to comment.