Skip to content

Sophon

Sophon #254

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: clippy
override: true
- name: Repl
run: |
cargo build --features="repl"
- name: Test
run: |
cd interpreter && cargo test