From 0c02e17899f63bb7d0d8f2cace0ea4d6903a2e8e Mon Sep 17 00:00:00 2001 From: Luke Davis Date: Tue, 8 Oct 2024 01:16:43 -0500 Subject: [PATCH] github action --- .github/workflows/{ci.yaml => shell-script-ci.yaml} | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) rename .github/workflows/{ci.yaml => shell-script-ci.yaml} (79%) diff --git a/.github/workflows/ci.yaml b/.github/workflows/shell-script-ci.yaml similarity index 79% rename from .github/workflows/ci.yaml rename to .github/workflows/shell-script-ci.yaml index d852fae..6a740d0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/shell-script-ci.yaml @@ -1,16 +1,17 @@ -name: CI +name: Shell Script CI on: push: - branches: - - main + branches: [main, develop] + pull_request: + branches: [main, develop] permissions: contents: read jobs: tests: - name: Run Tests + name: Run shunit2 tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v4