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
name: Core SDK - MFOS standalone sanity report | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
branches: [ next ] | |
jobs: | |
RunStandaloneTests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Run tests and create assets | |
env: | |
EVENT_NAME: ${{ github.event_name }} | |
GITHUB_REF: ${{ github.ref }} | |
PR_HEAD_REF: ${{ github.event.pull_request.head.ref }} | |
EXCLUDED_METHODS: ${{ secrets.EXCLUDED_METHODS }} | |
INTENT: ${{ secrets.INTENT }} | |
run: | | |
./.github/workflows/utils.sh runTests | |
- name: Upload report.json as an artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: report | |
path: ${{ github.workspace }}/report | |
- name: Get results from report.json | |
run: | | |
./.github/workflows/utils.sh getResults |