mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-19 19:08:26 -05:00
Co-authored-by: Steven Gu <steven.gu@crypto.com> Co-authored-by: HAOYUatHZ <haoyu@protonmail.com>
56 lines
1.2 KiB
YAML
56 lines
1.2 KiB
YAML
name: Coordinator
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- staging
|
|
paths:
|
|
- 'coordinator/**'
|
|
- '.github/workflows/coordinator.yml'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- staging
|
|
paths:
|
|
- 'coordinator/**'
|
|
- '.github/workflows/coordinator.yml'
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: 'coordinator'
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Lint
|
|
run: |
|
|
rm -rf $HOME/.cache/golangci-lint
|
|
make lint
|
|
goimports-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Install goimports
|
|
run: go install golang.org/x/tools/cmd/goimports
|
|
- run: goimports -local scroll-tech/coordinator/ -w .
|
|
- run: go mod tidy
|
|
# If there are any diffs from goimports or go mod tidy, fail.
|
|
- name: Verify no changes from goimports and go mod tidy
|
|
run: |
|
|
if [ -n "$(git status --porcelain)" ]; then
|
|
exit 1
|
|
fi
|