Skip to content

Fixed merge conflicts #17

Fixed merge conflicts

Fixed merge conflicts #17

Workflow file for this run

# Copyright (C) 2023, AllianceBlock. All rights reserved.
# See the file LICENSE for licensing terms.
name: NuklaiVM Tidy Checker
on:
push:
branches:
- main
pull_request:
jobs:
go_mod_tidy:
name: Tidy
runs-on: dev
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
check-latest: true
cache: true
- shell: bash
run: go mod tidy
- shell: bash
run: scripts/tests.clean.sh
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true