-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | | ||
|
@@ -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 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | | ||
|
@@ -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: | | ||
|
@@ -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 |
This file contains 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