mirror of
https://github.com/pi-hole/docker-pi-hole.git
synced 2026-04-20 00:39:56 +01:00
Run circle-test.sh in Github Actions on push or PR
Signed-off-by: Daniel <daniel@developerdan.com>
This commit is contained in:
26
.github/workflows/test.yaml
vendored
Normal file
26
.github/workflows/test.yaml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
name: Tests
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
ARCH:
|
||||
- amd64
|
||||
# https://github.com/pi-hole/docker-pi-hole/issues/587#issuecomment-617180631
|
||||
#- armel
|
||||
- armhf
|
||||
- arm64
|
||||
env:
|
||||
ARCH: ${{matrix.ARCH}}
|
||||
steps:
|
||||
- name: Checkout Repo
|
||||
uses: actions/checkout@v2
|
||||
- name: Run Circle Test
|
||||
run: |
|
||||
echo "Building ${ARCH}"
|
||||
./circle-test.sh
|
||||
Reference in New Issue
Block a user