Skip to content

[feature] Implementation of the interpreter for the 'For' statement. #107

[feature] Implementation of the interpreter for the 'For' statement.

[feature] Implementation of the interpreter for the 'For' statement. #107

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Check for Compilation Errors
run: cargo check --verbose
- name: Check Code Formatting
run: cargo fmt -- --check
- name: Run tests
run: cargo test --verbose