Immixcons #146
Workflow file for this run
This file contains hidden or 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@v4 | |
- name: Use latest stable | |
run: rustup update stable | |
- name: Cargo fmt check blockalloc | |
working-directory: ./blockalloc | |
run: cargo fmt --all -- --check | |
- name: Cargo fmt check immixcons | |
working-directory: ./immixcons | |
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 immixcons | |
working-directory: ./immixcons | |
run: cargo test | |
- name: Cargo test interpreter | |
working-directory: ./interpreter | |
run: cargo test |