Skip to content

Commit

Permalink
Merge branch 'main' into add-near-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
olga24912 committed Dec 22, 2023
2 parents 91480f6 + dbed355 commit adf5257
Show file tree
Hide file tree
Showing 29 changed files with 192 additions and 5,470 deletions.
33 changes: 28 additions & 5 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,34 @@ jobs:
name: Checks
runs-on: [self-hosted, heavy]
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Add toolchain
run: rustup target add wasm32-unknown-unknown
- name: Run checks
- name: Install rust
run: |
rustup show
rustup default ${{ env.RUST_VERSION }}
- name: Clone the repository
uses: actions/checkout@v4
- name: Run all checks
run: make check
test:
name: Tests
runs-on: [self-hosted, heavy]
steps:
- name: Install rust
run: |
rustup show
rustup default ${{ env.RUST_VERSION }}
- name: Clone the repository
uses: actions/checkout@v4
- name: Restore cache
run: |
cache-util restore cargo_git cargo_registry
- name: Run tests
run: make test
- name: Save cache
run: |
cache-util save cargo_git cargo_registry
env:
RUST_VERSION: 1.73.0
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ target/
**/*.rs.bk
bin/
.idea
Cargo.lock

# MacOS index files
.DS_Store
Loading

0 comments on commit adf5257

Please sign in to comment.