Skip to content

[compiler-v2]fix e2e compiler #9854

[compiler-v2]fix e2e compiler

[compiler-v2]fix e2e compiler #9854

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
pull_request:
branches:
- nkysg/compiler-v2-update
jobs:
build-and-test:
name: build and test
runs-on: self-hosted
timeout-minutes: 120
steps:
- name: checkout
uses: actions/checkout@v1
with:
submodules: recursive
- name: run fmt check
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: setup environment
run: bash ./scripts/dev_setup.sh -b -t -y -m
- name: run cargo clean
uses: actions-rs/cargo@v1
with:
command: clean
- name: run cargo check
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets