From 1fc10fd6fcbadb8c6c8f05895ae0ede1e57b79f8 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 12 Mar 2023 17:29:51 +0100 Subject: test: add LinuxServer tests --- .github/workflows/ci.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f229d2..47df797 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,9 +6,9 @@ on: workflow_dispatch: jobs: - test: + test_host: runs-on: ubuntu-latest - name: Test + name: Test (host) steps: - name: Checkout uses: actions/checkout@v3 @@ -17,8 +17,17 @@ jobs: - name: Test run: sudo ./test/host/test.sh + test_linuxserver: + runs-on: ubuntu-latest + name: Test (LinuxServer) + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Test + run: sudo ./test/linuxserver/test.sh + publish: - needs: [test] + needs: [test_host, test_linuxserver] runs-on: ubuntu-latest name: 'Publish' if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')) -- cgit v1.2.3