Lml: Mod Test 1.0.0
name: Module Tests on: [push] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Install Lml Mod Test 1.0.0 run: curl -fsSL https://get.lmltest.dev/1.0.0/install.sh | sh - name: Run all tests run: lml-mod-test run ./tests/*.toml --parallel 4
def divide(a, b): if b == 0: raise ValueError("Division by zero") return a / b Lml Mod Test 1.0.0
The 1.0.0 release is considered stable and will receive security and critical bug fixes until v2.0 GA. name: Module Tests on: [push] jobs: test: runs-on: