Skip to content

Commit

Permalink
cc
Browse files Browse the repository at this point in the history
  • Loading branch information
zen0bit committed May 5, 2024
1 parent 6bc3973 commit 1644756
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ env:
n: 0

on:
push:
branches: '**'
pull_request:
branches: '**'
workflow_dispatch:

concurrency:
Expand All @@ -21,11 +24,10 @@ jobs:
- uses: actions/checkout@v4
- name: test all Apps
run: |
n=0
printf '\tSetting up environment...\n'
printf '\n\tCreating directory structure...\n'
mkdir -p results
printf '\n\tInstalling dependencies...\n'
sudo apt install -y wget curl zsync grep jq sed xdg-user-dirs sudo
printf '\n\tMaking needed files executable...\n'
chmod +x ./INSTALL
printf '\n\tInstalling AM...\n'
Expand All @@ -40,8 +42,7 @@ jobs:
touch results/removed
touch results/noremoved
for app in ${apps}; do
((n++))
echo -e "\n\n$n\n\n"
echo -e "\n\n${n}\n\n"
am -i $app && echo "OK: $app" >> results/good || echo "FAIL! $app" >> results/bad

Check failure on line 46 in .github/workflows/test-apps.yml

View workflow job for this annotation

GitHub Actions / yaml lint

[yamllint] reported by reviewdog 🐶 [warning] line too long (93 > 80 characters) (line-length) Raw Output: .github/workflows/test-apps.yml:46:81: [warning] line too long (93 > 80 characters) (line-length)
am -R $app && echo "OK: $app" >> results/removed || echo "REMOVE! $app" >> results/noremoved

Check failure on line 47 in .github/workflows/test-apps.yml

View workflow job for this annotation

GitHub Actions / yaml lint

[yamllint] reported by reviewdog 🐶 [warning] line too long (104 > 80 characters) (line-length) Raw Output: .github/workflows/test-apps.yml:47:81: [warning] line too long (104 > 80 characters) (line-length)
done
Expand Down

0 comments on commit 1644756

Please sign in to comment.