This repository was archived by the owner on May 12, 2025. It is now read-only.
chore: Remove renovate config (#287) #218
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: Celo Rosetta CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| CI: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.19' | |
| - name: Install dependencies | |
| run: make deps | |
| - name: Check licenses | |
| run: make check-license | |
| - name: Linting | |
| uses: golangci/golangci-lint-action@v6 | |
| with: | |
| version: v1.50 | |
| - name: Build | |
| run: make all | |
| - name: Test | |
| run: make test | |