Skip to content

Add Prefix example (LCG cracker) to README.md #317

Add Prefix example (LCG cracker) to README.md

Add Prefix example (LCG cracker) to README.md #317

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build-and-test-windows:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: true
- name: Build interpreter and extensions
run: .\build.ps1
- name: Run tests
run: .\tests\test.ps1
build-and-test-ubuntu:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang lld powershell
- name: Build interpreter and extensions
shell: pwsh
run: ./build.ps1
- name: Run tests
shell: pwsh
run: ./tests/test.ps1