chore(taiko): release 2.1.0 #1613
This file contains hidden or 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: "Unit tests" | |
| on: | |
| pull_request: | |
| branches: [taiko] | |
| push: | |
| branches: [taiko] | |
| jobs: | |
| test: | |
| runs-on: arc-runner-set | |
| steps: | |
| - name: Cancel Previous Runs | |
| uses: styfle/[email protected] | |
| with: | |
| access_token: ${{ github.token }} | |
| - name: Prepare environment | |
| continue-on-error: true | |
| run: sudo apt-get update && sudo apt-get install -y build-essential | |
| - uses: actions/checkout@v3 | |
| with: | |
| repository: taikoxyz/taiko-geth | |
| - name: Set up Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: '1.24' | |
| - name: Lint | |
| run: make lint | |
| - name: Test | |
| env: | |
| TAIKO_TEST: true | |
| run: make test |