diff --git a/.github/workflows/loading-gs64-components.yml b/.github/workflows/loading-gs64-components.yml new file mode 100644 index 0000000..7405c3a --- /dev/null +++ b/.github/workflows/loading-gs64-components.yml @@ -0,0 +1,22 @@ +name: 'GS64 Components Loading' +on: + - push + - pull_request + - workflow_dispatch + +jobs: + component-loading: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + load-spec: + - Deployment + name: GS64 + ${{ matrix.load-spec }} + steps: + - uses: actions/checkout@v3 + - name: Load component in image + uses: ba-st-actions/gs64-ci@v2 + with: + project_name: 'Kepler' + load_spec: 'Kepler-${{ matrix.load-spec }}' diff --git a/.github/workflows/unit-tests-gs64.yml b/.github/workflows/unit-tests-gs64.yml new file mode 100644 index 0000000..0f8baf0 --- /dev/null +++ b/.github/workflows/unit-tests-gs64.yml @@ -0,0 +1,17 @@ +name: 'GS64 Unit Tests' +on: + - push + - pull_request + - workflow_dispatch + +jobs: + unit-tests: + runs-on: ubuntu-latest + name: GS64 Unit Tests + steps: + - uses: actions/checkout@v3 + - name: Load Image and Run Tests + uses: ba-st-actions/gs64-ci@v2 + with: + project_name: 'Kepler' + run_tests: 'true'