Skip to content

Commit 51beb81

Browse files
feat: uplift dependencies and update to support ink-v6.0.0-alpha (#143)
Co-authored-by: davidsemakula <[email protected]>
1 parent 94835ac commit 51beb81

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+27002
-11575
lines changed

.github/workflows/rust-checks.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,20 @@ concurrency:
1616
jobs:
1717
main:
1818
name: Run check, test and lints
19-
runs-on: drink-runner
19+
runs-on: ubuntu-latest
2020
env:
2121
CARGO_INCREMENTAL: 0
2222
steps:
2323
- name: Checkout source code
2424
uses: actions/checkout@v3
2525

2626
- name: Install Rust toolchain
27-
uses: Cardinal-Cryptography/github-actions/install-rust-toolchain@v1
27+
uses: actions-rs/toolchain@v1
2828
with:
29-
targets: wasm32-unknown-unknown
30-
components: clippy rustfmt
29+
toolchain: stable
30+
profile: minimal
31+
default: true
32+
components: clippy, rustfmt
3133

3234
- name: Add rust-src
3335
shell: bash
@@ -51,5 +53,8 @@ jobs:
5153
command: test
5254

5355
- name: Run tests for examples
56+
env:
57+
CARGO_TARGET_DIR: ${{ github.workspace }}/target
5458
shell: bash
55-
run: make test_examples
59+
run: |
60+
for dir in examples/*; do (echo "Running example: $dir" && cargo test --manifest-path $dir/Cargo.toml); done

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
# Contracts' cargo locks
88
examples/**/Cargo.lock
99

10-
# JetBrains IDEs
10+
# IDEs
1111
.idea/
12+
.vscode/

0 commit comments

Comments
 (0)