Skip to content

Commit aa0d754

Browse files
authored
Merge pull request #43 from rust3ds/feature/support-custom-runner
Add support for custom cargo runner
2 parents cda49e0 + 6b4fd53 commit aa0d754

File tree

7 files changed

+677
-113
lines changed

7 files changed

+677
-113
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,16 @@ jobs:
5656
- uses: ./.github/actions/setup
5757
with:
5858
toolchain: ${{ matrix.toolchain }}
59-
59+
6060
- name: Install cargo-3ds
6161
uses: actions-rs/cargo@v1
6262
with:
6363
command: install
64-
args: --path .
64+
args: --locked --path .
6565

6666
- name: Create new project
6767
run: cargo 3ds new app --bin
68-
68+
6969
- name: Build project
7070
working-directory: ./app
7171
run: cargo 3ds build --release

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
target
2-
Cargo.lock
3-
.idea
2+
.idea

0 commit comments

Comments
 (0)