Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

[MPTWG] Update CI for MPTWG #1591

Merged
merged 3 commits into from
Sep 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
with:
cancel_others: 'true'
concurrent_skipping: 'same_content_newer'
paths_ignore: '["**/README.md"]'
paths_ignore: '["**/README.md", "mpt-witness-generator/**"]'

lints:
needs: [skip_check]
Expand Down
49 changes: 49 additions & 0 deletions .github/workflows/mpt-witness-generator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: MPT Witness Generator Checks

on:
merge_group:
pull_request:
types: [synchronize, opened, reopened, ready_for_review]
push:
branches:
- main

jobs:
skip_check:
runs-on: ubuntu-latest
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
cancel_others: 'true'
concurrent_skipping: 'same_content_newer'
paths: '["mpt-witness-generator/**"]'


build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Format
uses: Jerome1337/gofmt-action@v1.0.5
with:
gofmt-path: './mpt-witness-generator'
gofmt-flags: '-l -d'

- name: Build
working-directory: ./mpt-witness-generator
run: go build -v ./...

- name: Test
working-directory: ./mpt-witness-generator
env:
NO_GETH: true
run: go test -v ./...
33 changes: 0 additions & 33 deletions mpt-witness-generator/.github/workflows/go.yml

This file was deleted.

Loading