-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GS64 loading / test run github actions
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }}' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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' |