Fix COLOR_SCHEME when commands exit with error #201
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: Test plugin | |
on: [push, pull_request] | |
jobs: | |
test-plugin: | |
name: Linux x64_64 | |
runs-on: ubuntu-latest | |
env: | |
REPODIR: "${{ github.workspace }}" | |
APPDIR: "/tmp/AppDir" | |
DEPLOY_GTK_VERSION: 3 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup dependencies | |
run: | | |
sudo apt-get update -y -qq | |
sudo apt-get install -y -qq dpkg-dev libgtk-3-0 libgtk-3-dev gir1.2-gtk-3.0 wget tree libgirepository1.0-dev libfuse2 | |
- name: Download external binairies | |
run: | | |
wget -qc "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage" | |
wget -qc "https://raw.githubusercontent.com/linuxdeploy/misc-plugins/master/tests/test-plugins.sh" | |
echo "LINUXDEPLOY=$(readlink -f linuxdeploy-x86_64.AppImage)" >> $GITHUB_ENV | |
chmod +x *.AppImage *.sh | |
- name: Run test script | |
run: | | |
mkdir -pv "$APPDIR/usr/bin" | |
./test-plugins.sh | |
- name: Display files inside AppDir | |
run: tree "$APPDIR" |