[chain] Introduce Multi-Actions and Outputs in Transactions #3509
Workflow file for this run
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
# Copyright (C) 2023, Ava Labs, Inc. All rights reserved. | |
# See the file LICENSE for licensing terms. | |
name: MorpheusVM Unit Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [labeled,synchronize,reopened] | |
jobs: | |
morpheusvm-unit-tests: | |
if: ${{ github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'run all ci') }} | |
runs-on: | |
labels: ubuntu-20.04-32 | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.21" | |
check-latest: true | |
cache: true | |
cache-dependency-path: | | |
go.sum | |
examples/morpheusvm/go.sum | |
- name: Run unit tests | |
working-directory: ./examples/morpheusvm | |
shell: bash | |
run: scripts/tests.unit.sh | |
- name: Run integration tests | |
working-directory: ./examples/morpheusvm | |
shell: bash | |
run: scripts/tests.integration.sh | |
- name: Archive code coverage results (text) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-out | |
path: ./examples/morpheusvm/integration.coverage.out | |
- name: Archive code coverage results (html) | |
uses: actions/upload-artifact@v4 | |
with: | |
name: code-coverage-html | |
path: ./examples/morpheusvm/integration.coverage.html | |
- name: Run e2e tests | |
working-directory: ./examples/morpheusvm | |
shell: bash | |
run: scripts/run.sh | |
env: | |
MODE: "test" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true |