⏺ The CI workflow: #1

Merged
navicore merged 2 commits from layout into main 2025-12-03 03:06:34 +00:00
navicore commented 2025-12-03 03:03:14 +00:00 (Migrated from github.com)
  • Triggers: Push to main, PRs to main
  • Matrix: Ubuntu + macOS
  • Steps: a. Checkout b. Install Rust c. Cache cargo (speeds up subsequent runs) d. Install just e. Install seqc from crates.io f. Run just ci

Final project structure:

seq-lisp/
├── .github/
│ └── workflows/
│ └── ci.yml # GitHub Actions
├── src/
│ ├── tokenizer.seq
│ ├── parser.seq
│ ├── sexpr.seq
│ ├── eval.seq
│ ├── repl.seq
│ └── test_*.seq
├── examples/
│ └── *.lisp
├── justfile
├── README.md
└── .gitignore

- Triggers: Push to main, PRs to main - Matrix: Ubuntu + macOS - Steps: a. Checkout b. Install Rust c. Cache cargo (speeds up subsequent runs) d. Install just e. Install seqc from crates.io f. Run just ci Final project structure: seq-lisp/ ├── .github/ │ └── workflows/ │ └── ci.yml # GitHub Actions ├── src/ │ ├── tokenizer.seq │ ├── parser.seq │ ├── sexpr.seq │ ├── eval.seq │ ├── repl.seq │ └── test_*.seq ├── examples/ │ └── *.lisp ├── justfile ├── README.md └── .gitignore
Sign in to join this conversation.
No description provided.