-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c5c5dbc
commit 927c4c6
Showing
2 changed files
with
15 additions
and
28 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
on: push | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
container: archlinux/archlinux:latest | ||
steps: | ||
- name: Install dependencies | ||
run: pacman -Syu --noconfirm make openssh subversion rsync arch-install-scripts git bzr mercurial diffutils asciidoc shellcheck | ||
- uses: actions/checkout@v2 | ||
- name: Run tests | ||
run: | | ||
make PREFIX=/usr | ||
make PREFIX=/usr DESTDIR="$(mktemp -d)" install | ||
make check || true | ||
SHELLCHECK_OPTS="-S error" make check |
This file was deleted.
Oops, something went wrong.