-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pre-submit test validation action workflow (#115)
- Loading branch information
Showing
12 changed files
with
62 additions
and
504 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,18 @@ | ||
name: Pre submit tests and validations on main development branch | ||
on: | ||
pull_request: | ||
branches: | ||
- 'main' | ||
repository_dispatch: | ||
types: [pre-submit-check] | ||
jobs: | ||
Pre-Submit-Check-Main-Branch: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Repo Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} | ||
|
||
- name: SPM sample app build test | ||
run: scripts/build_test_spm_samples.sh |
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
Oops, something went wrong.