Skip to content

MorpheusVM: The Choice is Yours #53

MorpheusVM: The Choice is Yours

MorpheusVM: The Choice is Yours #53

# Copyright (C) 2023, Ava Labs, Inc. All rights reserved.
# See the file LICENSE for licensing terms.
name: BaseVM Static Analysis
on:
push:
branches:
- main
pull_request:
jobs:
basevm-lint:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
check-latest: true
cache: true
cache-dependency-path: |
go.sum
examples/basevm/go.sum
- name: Run static analysis tests
working-directory: ./examples/basevm
shell: bash
run: scripts/tests.lint.sh
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true