Tests #127
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: Tests | |
on: | |
pull_request: | |
branches: [ master, main ] | |
push: | |
branches: [ master, main ] | |
schedule: | |
- cron: "0 13 * * 1" | |
jobs: | |
test-e2e: | |
name: Test Extension with Sunbeam | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Test with Sunbeam | |
uses: sunbeam-labs/sbx_test_action@v0 | |
with: | |
sunbeam-version: 'dev' | |
install-options: '-m' | |
extension-name: 'sunbeam-labs/sbx_kraken' | |
extension-branch-name: ${{ github.head_ref }} | |
- name: Dump Logs | |
shell: bash | |
if: always() | |
run: tail -n +1 logs/* | |
- name: Dump Stats | |
shell: bash | |
if: always() | |
run: cat stats/* |