update to pull in VM trait from external location #23
Workflow file for this run
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: Rust code checks | |
on: | |
pull_request: | |
# Default types for PR are opened, synchronize, reopened. Need | |
# ready_for_review to catch a PR that is moving from draft to not-draft | |
types: [opened, synchronize, reopened, ready_for_review] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check-code: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Code checks | |
run: make check |