Anydesk arm64 #1307
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Shellcheck | |
on: | |
pull_request_target: | |
branches: | |
- master | |
push: | |
branches: '**' | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout pi-apps repo | |
uses: actions/checkout@v3 | |
if: github.event_name != 'pull_request_target' | |
- name: Checkout pi-apps PR repo | |
uses: actions/checkout@v3 | |
if: github.event_name == 'pull_request_target' | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Check vital scripts for errors | |
run: | | |
cd $GITHUB_WORKSPACE | |
sudo apt install shellcheck wget -y | |
if ! shellcheck api createapp gui install manage preload settings uninstall updater etc/preload-daemon etc/runonce-entries etc/terminal-run apps/*/install apps/*/install-32 apps/*/install-64 apps/*/uninstall --color=always | sed '0,/'$(echo -e "\033")'\[31m/!{q1}' ;then | |
exit 1 | |
fi |