Fix syntax error (#61) #139
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
on: [push, pull_request] | |
# push: | |
# branches: [master] | |
# pull_request: | |
# branches: [master] | |
name: code-test | |
jobs: | |
test: | |
name: Test Suite | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Install stable toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Cargo fmt check blockalloc | |
working-directory: ./blockalloc | |
run: cargo fmt --all -- --check | |
- name: Cargo fmt check stickyimmix | |
working-directory: ./stickyimmix | |
run: cargo fmt --all -- --check | |
- name: Cargo fmt check interpreter | |
working-directory: ./interpreter | |
run: cargo fmt --all -- --check | |
- name: Cargo test blockalloc | |
working-directory: ./blockalloc | |
run: cargo test | |
- name: Cargo test stickyimmix | |
working-directory: ./stickyimmix | |
run: cargo test | |
- name: Cargo test interpreter | |
working-directory: ./interpreter | |
run: cargo test |