Skip to content
Merged

Evm #49

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 33 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,42 @@ jobs:
cache: 'maven'

- name: Build and run tests
run: mvn -B clean test
run: mvn -B clean test -Dtest='!vegas.eth.**'

- name: Upload test reports
if: always() # run even if tests fail
if: always()
uses: actions/upload-artifact@v4
with:
name: surefire-reports
path: target/surefire-reports

eth-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '25'
cache: 'maven'

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1

- name: Install solc
run: |
pip3 install -r requirements-test.txt
solc-select install 0.8.31
solc-select use 0.8.31
solc --version

- name: Build and run Ethereum tests
run: mvn -B clean test -Dtest='vegas.eth.**'

- name: Upload test reports
if: always()
uses: actions/upload-artifact@v4
with:
name: surefire-reports-eth
path: target/surefire-reports
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ CLAUDE.md
lsp/server/*.jar

__pycache__
.venv/
.diff
.idea
.claude
Expand Down
5 changes: 5 additions & 0 deletions docs/LANGUAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,3 +135,8 @@ withdraw (Alice.x != null)
4. **Backend Generation**:
- **Solidity**: Generates functions with `depends` modifiers and bail logic.
- **Gambit**: Generates a game tree where concurrent DAG nodes share information sets.

## Related langauges

https://github.com/marlowe-lang

Loading