Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add sensor #7

Merged
merged 10 commits into from
Sep 24, 2023
Merged
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
204 changes: 0 additions & 204 deletions .github/getting-started.md

This file was deleted.

26 changes: 0 additions & 26 deletions .github/milestone_template.md

This file was deleted.

27 changes: 0 additions & 27 deletions .github/workflows/release-drafter.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/tests-runner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
on:
pull_request:
branches:
- main
push:
branches:
- main

name: Test runner

jobs:
check:
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

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

- name: Install packages
run: npm install

- name: Run tests
run: forge test -vvvvv

- name: Run snapshot
run: forge snapshot
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ If you're interested in how the project is organized at a higher level, please c
## Our PoC team ❤️

Developers
| [<img src="https://github.com/LeTamanoir.png" width=85><br><sub>Martin Saldinger</sub>](https://github.com/LeTamanoir) | [<img src="https://github.com/EdenComp.png" width=85><br><sub>Florian Lauch</sub>](https://github.com/EdenComp) | [<img src="https://github.com/Nfire2103.png" width=85><br><sub>Nathan Flattin</sub>](https://github.com/Nfire2103) |
| :--------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------: |
| [<img src="https://github.com/LeTamanoir.png" width=85><br><sub>Martin Saldinger</sub>](https://github.com/LeTamanoir) | [<img src="https://github.com/Nfire2103.png" width=85><br><sub>Nathan Flattin</sub>](https://github.com/Nfire2103) |
| :--------------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------------------------------: |

Manager
| [<img src="https://github.com/Doozers.png" width=85><br><sub>Ismaël Fall</sub>](https://github.com/Doozers) |
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "git+https://github.com/PoCInnovation/Price-Sensor.git"
},
"keywords": [],
"author": "Martin Saldinger, Nathan Flattin, Florian Lauch",
"author": "Martin Saldinger, Nathan Flattin",
"license": "ISC",
"bugs": {
"url": "https://github.com/PoCInnovation/Price-Sensor/issues"
Expand Down
3 changes: 0 additions & 3 deletions remappings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,4 @@ mgv_lib/=node_modules/@mangrovedao/mangrove-core/lib/
mgv_test/=node_modules/@mangrovedao/mangrove-core/test/
mgv_script/=node_modules/@mangrovedao/mangrove-core/script/

ds-test/=node_modules/@mangrovedao/mangrove-core/lib/forge-std/lib/ds-test/src/
forge-std/=node_modules/@mangrovedao/mangrove-core/lib/forge-std/src/

uniswap/=node_modules/@uniswap/v3-core/contracts/
Loading