Skip to content

Merge pull request #73 from alerque/no-force-staging #34

Merge pull request #73 from alerque/no-force-staging

Merge pull request #73 from alerque/no-force-staging #34

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