Make the IGNORED_SERVICES array configurable #45
Workflow file for this run
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
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: archlinux/archlinux:latest | |
steps: | |
- name: Install dependencies | |
run: pacman -Syu --noconfirm make flake8 shellcheck | |
- uses: actions/checkout@v3 | |
- name: Run tests | |
run: | | |
make PREFIX=/usr DESTDIR="$(mktemp -d)" install | |
make check || true | |
SHELLCHECK_OPTS="-S error" make check |