2022-08-04 00:29:57 +00:00
|
|
|
name: Rust
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "master" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "master" ]
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-08-04 00:32:46 +00:00
|
|
|
- name: Init submodules
|
|
|
|
run: git submodule update --init
|
|
|
|
- name: Build interpreter
|
2022-08-04 00:29:57 +00:00
|
|
|
run: cd interpreter && cargo build --verbose; cd ..
|
2022-08-04 00:32:46 +00:00
|
|
|
- name: Run interpreter tests
|
2022-08-04 00:29:57 +00:00
|
|
|
run: cd interpreter && cargo test --verbose; cd ..
|