Skip to content

Commit

Permalink
fixing pacman installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxython committed Apr 24, 2024
1 parent de1d9cf commit 1c0a1a0
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ name: Test

on:
push:
branches:
- main
paths:
- 'action.yml'
- 'index.js'
- 'package.json'
- 'package-lock.json'
- 'node_modules/**'
- '.github/workflows/test.yml'
pull_request:
paths:
- 'action.yml'
- 'index.js'
Expand All @@ -16,7 +26,17 @@ jobs:
name: Check commands
steps:
- uses: actions/checkout@v4
- run: |
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
- uses: ./
- run: |
sudo apt search pacman
repo-add --version
for cmd in pacman \
pacman-conf \
makepkg \
pacman-key \
repo-add \
repo-elephant \
repo-remove; do
type ${cmd}
${cmd} --version
done

0 comments on commit 1c0a1a0

Please sign in to comment.