Skip to content

Commit

Permalink
Merge pull request #2 from daddinuz/dev
Browse files Browse the repository at this point in the history
* refactor grammar
* refactor builtins
* refactor evaluator
* refactor examples
* build.rs detects lib changes
* remove Yield effect
* rename Effect to RuntimeError
* remove Channel and Process expressions
* rename Vocabulary to Dictionary
  • Loading branch information
daddinuz authored Oct 19, 2024
2 parents 9a20344 + 5743fc5 commit 5a7f584
Show file tree
Hide file tree
Showing 37 changed files with 1,259 additions and 1,479 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[env]
CARGO_WORKSPACE_DIR = { value = "", relative = true }
20 changes: 20 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Rust

on:
push:
branches: [ "main", "dev" ]
pull_request:
branches: [ "main", "dev" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
Loading

0 comments on commit 5a7f584

Please sign in to comment.