mirror of
https://github.com/CompeyDev/lune-packaging.git
synced 2025-01-07 11:29:10 +00:00
23 lines
520 B
YAML
23 lines
520 B
YAML
name: AUR Test
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Copy AUR PKGBUILDs into testing dir
|
|
run: cp -r package/aur/lune-bin/ package/aur/lune-git/ package/aur/lune/ test/aur/
|
|
|
|
- name: Setup docker CLI
|
|
uses: actions-hub/docker/cli@master
|
|
env:
|
|
SKIP_LOGIN: true
|
|
|
|
- name: Test
|
|
run: docker build -t aur_test test/aur && docker run aur_test
|
|
|