Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to near-workspace 0.9.0 #37

Merged
merged 7 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,21 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Add toolchain
run: rustup target add wasm32-unknown-unknown
- name: Run checks
- name: Run all checks
run: make check
test:
name: Tests
runs-on: [self-hosted, heavy]
steps:
- name: Checkout sources
uses: actions/checkout@v2
mrLSD marked this conversation as resolved.
Show resolved Hide resolved
- name: Add toolchain target
mrLSD marked this conversation as resolved.
Show resolved Hide resolved
run: rustup target add wasm32-unknown-unknown
- 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
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
Loading