Skip to content

Commit

Permalink
some trivials
Browse files Browse the repository at this point in the history
  • Loading branch information
koushiro committed Mar 23, 2024
1 parent 1116259 commit 659f760
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout Sources
- name: Checkout sources
uses: actions/checkout@v4

- name: Install Rust Toolchain
- name: Install Rust toolchain
run: make setup

- name: Install protoc
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
name: Run Code Lint
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
- name: Checkout sources
uses: actions/checkout@v4

- name: Cache Cargo Registry & Git Sources
- name: Cache cargo registry & git sources
uses: actions/cache@v3
with:
path: |
Expand All @@ -44,16 +44,16 @@ jobs:
- name: Run sccache
uses: mozilla-actions/[email protected]

- name: Install Rust Toolchain
- name: Install Rust toolchain
run: make setup

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Check Code Format
- name: Check code format
run: make fmt-check

- name: Run Clippy
- name: Run clippy
run: make clippy-release
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
- name: Checkout sources
uses: actions/checkout@v4

- name: Cache Dependencies & Build Outputs
- name: Cache cargo registry & git sources
uses: actions/cache@v3
with:
path: |
Expand All @@ -43,25 +43,25 @@ jobs:
- name: Run sccache
uses: mozilla-actions/[email protected]

- name: Install Rust Toolchain
- name: Install Rust toolchain
run: make setup

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Run Unit Tests
- name: Run unit tests
run: make test-release

integration-test:
name: Run Integration Tests
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
- name: Checkout sources
uses: actions/checkout@v4

- name: Cache Dependencies & Build Outputs
- name: Cache cargo registry & git sources
uses: actions/cache@v3
with:
path: |
Expand All @@ -78,21 +78,21 @@ jobs:
- name: Run sccache
uses: mozilla-actions/[email protected]

- name: Install Rust Toolchain
- name: Install Rust toolchain
run: make setup

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build Client
- name: Build client
run: make build-release

- name: Setup Node.js
- name: Setup node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Run Integration Tests
- name: Run integration tests
run: make integration-test
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Polkadot Frontier

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/paritytech/frontier/rust.yml)](https://github.com/paritytech/frontier/actions)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/paritytech/frontier/test.yml)](https://github.com/paritytech/frontier/actions)
[![Matrix](https://img.shields.io/matrix/frontier:matrix.org)](https://matrix.to/#/#frontier:matrix.org)

Frontier is the EVM backbone of Polkadot.
Expand Down Expand Up @@ -118,4 +118,4 @@ If the affected crate does not yet have `-dev` suffix:
and add `-dev` suffix.

If your pull request introduces a new crate, please set its version to
`1.0.0-dev`.
`1.0.0-dev`.

0 comments on commit 659f760

Please sign in to comment.