Skip to content

Commit

Permalink
build: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroEkkusu committed Aug 19, 2024
1 parent f8d8c80 commit 7495bba
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,19 @@ jobs:
forge fmt --check
id: fmt

- name: Install Bun
uses: oven-sh/setup-bun@v2

- name: Run Forge build
run: |
forge --version
forge soldeer install
bun install
bun solx/transpiler.ts
forge build --sizes
id: build

- name: Install Bun
uses: oven-sh/setup-bun@v2

- name: Run Forge tests
run: |
bun install
forge test -vvv
id: test
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"files.associations": {
"*.solx": "solidity"
}
},
"workbench.colorTheme": "Default Dark Modern"
}
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# SOLX

**Solidity × Any-Language Transpiler for Foundry.**

Write Solidity AND **any other programming language** <ins>at the same time</ins>!

<img src="./demo.gif"></img>
Expand Down Expand Up @@ -50,7 +48,7 @@ forge test


Specify <ins>variables to sync</ins> between Solidity and TypeScript:
Specify variables to **sync** between Solidity and TypeScript:

```solidity
uint256 a;
Expand All @@ -60,7 +58,7 @@ a++;
assertEq(a, 1);
```

Specify <ins>variables to clone</ins> from TypeScript:
Specify variables to **clone** from TypeScript:

```solidity
uint256 a = 1;
Expand Down

0 comments on commit 7495bba

Please sign in to comment.