Skip to content

build(deps): bump ethers from 2.0.9 to 2.0.10 (#1087) #4

build(deps): bump ethers from 2.0.9 to 2.0.10 (#1087)

build(deps): bump ethers from 2.0.9 to 2.0.10 (#1087) #4

Workflow file for this run

---
name: Workflow - Push
on:
workflow_dispatch:
push:
branches: [main]
jobs:
linters:
name: Run linters
uses: ./.github/workflows/linters.yml
rust_build:
name: Build Rust project
uses: ./.github/workflows/rust-build.yml
linters_cargo:
name: Run Cargo linters
uses: ./.github/workflows/linters-cargo.yml
needs: rust_build
tests:
name: Run tests and coverage
uses: ./.github/workflows/tests-coverage.yml
needs: [rust_build]
# benchmark:
# name: Run benchmarks
# uses: ./.github/workflows/benchmarks.yml
# needs: [rust_build, tests]
# permissions:
# # deployments permission to deploy GitHub pages website
# deployments: write
# # contents permission to update benchmark contents in gh-pages branch
# contents: write
# # post on the pull-request page
# pull-requests: write
rustdoc:
name: Deploy docs to GitHub Pages
uses: ./.github/workflows/rustdoc.yml
needs: tests
permissions:
contents: write