add aur install checker to CI, closes #102
This commit is contained in:
parent
8b1f3a145d
commit
dfdd9563c4
1 changed files with 16 additions and 0 deletions
16
.github/workflows/aur-checker.yml
vendored
Normal file
16
.github/workflows/aur-checker.yml
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
name: AUR install
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "32 5 */3 * *"
|
||||
push:
|
||||
branches: [ master, main ]
|
||||
|
||||
jobs:
|
||||
test-install:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Install AUR package
|
||||
run: ./scripts/check-aur.sh
|
Loading…
Reference in a new issue