MimeTypes: Fix incorrectly symlinked text icons #124
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: "Check symlinks" | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
check: | |
name: Check for dangling symlinks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v2 | |
- name: Check symlinks | |
shell: bash | |
run: | | |
sudo apt-get update | |
sudo apt install -y libgtk-3-dev --no-install-recommends | |
./configure | |
make test |