Skip to content

Commit 0937641

Browse files
authored
Merge pull request #2 from CMTA/dev
Dev
2 parents 59701eb + b8ff95f commit 0937641

191 files changed

Lines changed: 8483 additions & 17251 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/test.yml

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,30 @@ jobs:
1616
name: Foundry project
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2
2020
with:
2121
submodules: recursive
2222

23+
24+
- name: Setup NodeJS 20.5.0
25+
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 #v4.4.0
26+
with:
27+
node-version: 20.5.0
28+
29+
- name: Install nodes modules inside CMTAT lib
30+
run: npm install
31+
working-directory: ./lib/CMTAT
32+
2333
- name: Install Foundry
24-
uses: foundry-rs/foundry-toolchain@v1
34+
#v1.5.0
35+
uses: foundry-rs/foundry-toolchain@50d5a8956f2e319df19e6b57539d7e2acb9f8c1e
36+
with:
37+
version: nightly
2538

2639
- name: Show Forge version
2740
run: |
2841
forge --version
2942
30-
- name: Run Forge fmt
31-
run: |
32-
forge fmt --check
33-
id: fmt
34-
3543
- name: Run Forge build
3644
run: |
3745
forge build --sizes

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ docs/
1212

1313
# Dotenv file
1414
.env
15+
# node_modules
16+
node_modules/
17+

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ Please follow [https://changelog.md/](https://changelog.md/) conventions.
1616
- Perform an audit with several audit tools (Mythril and Slither), update the report in the corresponding directory [./doc/security/audits/tools](./doc/security/audits/tools)
1717
- Update surya doc by running the 3 scripts in [./doc/script](./doc/script)
1818
- Update changelog
19+
20+
## v0.1.0
21+
22+
First release !

CONTRIBUTING.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Contributing Guidelines
22

3-
There are many ways to contribute to RuleEngine Contracts.
3+
There are many ways to contribute to Rules Contracts.
4+
5+
## Development branch
6+
7+
If you want to propose some improvement to the codebase, use the current development branch `dev` to perform the modification.
48

59
## Opening an issue
610

0 commit comments

Comments
 (0)