doc: add open points to readme #53
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Move crates | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- language/** | |
- Cargo.toml | |
- Cargo.lock | |
- .github/workflows/check-move-packages-pull-request.yml | |
- .github/workflows/check-move-packages-push.yml | |
- move-vm-backend/** | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check-move-packages: | |
runs-on: ubuntu-latest | |
name: Run all tests (except for move-compiler, move-cli, move-vm-runtime) | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
- uses: ./.github/actions/build-setup | |
- name: Run all tests | |
run: cargo test |