Skip to content

Commit

Permalink
Rename client workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
febo committed Aug 23, 2023
1 parent 0e53c7d commit 693f3f8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build Programs
name: Build Rust Client

on:
workflow_call:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,23 +99,23 @@ jobs:
with:
filters: .github/file-filters.yml

test_js:
test_js_client:
if: needs.generate_clients.outputs.js_changed == 'true'
name: JS Client
needs: generate_clients
uses: ./.github/workflows/test-js.yml
uses: ./.github/workflows/test-js-client.yml
secrets: inherit

build_sdk:
build_rust_client:
if: needs.generate_clients.outputs.rust_changed == 'true'
name: Rust Client
needs: generate_clients
uses: ./.github/workflows/build-sdk.yml
uses: ./.github/workflows/build-rust-client.yml
secrets: inherit

test_sdk:
test_rust_client:
if: needs.generate_clients.outputs.rust_changed == 'true'
name: Rust Client
needs: generate_clients
uses: ./.github/workflows/test-sdk.yml
uses: ./.github/workflows/test-rust-client.yml
secrets: inherit
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test Programs
name: Test Rust Client

on:
workflow_call:
Expand Down

0 comments on commit 693f3f8

Please sign in to comment.