mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-20 03:18:05 -05:00
Co-authored-by: Steven Gu <steven.gu@crypto.com> Co-authored-by: HAOYUatHZ <haoyu@protonmail.com>
89 lines
2.2 KiB
YAML
89 lines
2.2 KiB
YAML
name: Roller
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- staging
|
|
paths:
|
|
- 'roller/**'
|
|
- '.github/workflows/roller.yml'
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- staging
|
|
paths:
|
|
- 'roller/**'
|
|
- '.github/workflows/roller.yml'
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: 'roller'
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: nightly-2022-08-23
|
|
override: true
|
|
components: rustfmt, clippy
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.18.x
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Cache cargo registry
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cargo/registry
|
|
key: ${{ runner.os }}-roller-cargo-registry-${{ hashFiles('roller/core/prover/rust/Cargo.lock') }}
|
|
- name: Cache cargo index
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ~/.cargo/git
|
|
key: ${{ runner.os }}-roller-cargo-index-${{ hashFiles('roller/core/prover/rust/Cargo.lock') }}
|
|
- name: Cache cargo target
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: /home/runner/work/scroll/scroll/roller/core/prover/rust/target
|
|
key: ${{ runner.os }}-roller-cargo-build-target-${{ hashFiles('roller/core/prover/rust/Cargo.lock') }}
|
|
- name: Test
|
|
run: |
|
|
make roller
|
|
go test -v ./...
|
|
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/roller/ -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
|