feat: account fetch metrics fine-grained by RPC origin #2606
Workflow file for this run
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: Run CI - Lint | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| push: | |
| branches: [master, dev] | |
| pull_request: | |
| types: [opened, reopened, synchronize, ready_for_review] | |
| jobs: | |
| run_make_ci_lint: | |
| if: github.event.pull_request.draft == false | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout this magicblock-validator | |
| uses: actions/checkout@v2 | |
| with: | |
| path: magicblock-validator | |
| - uses: ./magicblock-validator/.github/actions/setup-build-env | |
| with: | |
| build_cache_key_name: "magicblock-validator-ci-lint-v002" | |
| rust_toolchain_release: "1.84.1" | |
| github_access_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - run: make ci-lint | |
| shell: bash | |
| working-directory: magicblock-validator | |
| - name: Run ci-lint in test-integration | |
| run: | | |
| cd test-integration | |
| make ci-lint | |
| shell: bash | |
| working-directory: magicblock-validator |