Added workflows to the repo for testsing and building #1
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, AllianceBlock. All rights reserved. | |
# See the file LICENSE for licensing terms. | |
name: NuklaiVM Static Analysis | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
nuklaivm-lint: | |
runs-on: | |
labels: ubuntu-20.04-32 | |
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 | |
- name: Run static analysis tests | |
working-directory: ./ | |
shell: bash | |
run: scripts/tests.lint.sh | |
- name: Build vm, cli | |
working-directory: ./ | |
shell: bash | |
run: scripts/build.sh | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true |