Skip to content

checkservices: honor -m/-M flags #60

checkservices: honor -m/-M flags

checkservices: honor -m/-M flags #60

Workflow file for this run

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