Turing replica state #357
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: geth unit tests | |
on: | |
push: | |
paths: | |
- 'l2geth/**' | |
branches: | |
- 'master' | |
- 'develop' | |
- '*rc' | |
- 'regenesis/*' | |
pull_request: | |
paths: | |
- 'l2geth/**' | |
branches: | |
- 'master' | |
- 'develop' | |
- '*rc' | |
- 'regenesis/*' | |
workflow_dispatch: | |
defaults: | |
run: | |
working-directory: ./l2geth | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.16.x | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Lint | |
run: make lint | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.18.x | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install | |
run: make | |
- name: Test | |
run: make test |