Changed rust order and specific rs dir
This commit is contained in:
parent
989b6a8fdb
commit
11ca59eed9
1 changed files with 9 additions and 7 deletions
16
.github/workflows/build_with_tests.yml
vendored
16
.github/workflows/build_with_tests.yml
vendored
|
@ -18,6 +18,15 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
- uses: actions-rs/cargo@v1
|
||||
name: Rust build
|
||||
with:
|
||||
working-directory: ./rs
|
||||
command: build
|
||||
args: --release --features=uniffi/cli
|
||||
- name: Set up JDK 17
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
|
@ -28,11 +37,4 @@ jobs:
|
|||
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
|
||||
with:
|
||||
arguments: build
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
- uses: actions-rs/cargo@v1
|
||||
with:
|
||||
command: build
|
||||
args: --release --features=uniffi/cli
|
||||
# TODO Add tests
|
||||
|
|
Loading…
Reference in a new issue