Merge pull request #1232 from Strykar/patch-3 #712
This file contains hidden or 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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| container: archlinux | |
| steps: | |
| - run: pacman -Syu --noconfirm base base-devel shellcheck git | |
| - uses: actions/checkout@v2 | |
| - name: Option parsing consistency | |
| run: tests/parseopt-consistency | |
| - name: Shellcheck | |
| if: success() || failure() # Do not fail-fast | |
| run: make shellcheck |