Add funding rate watcher (#2)

* Add FundingRate interfaces and worker

* Add build on PR

* Remove zip

* Specify the solution path

* Add build for worker too

* Set up StatisticService.cs for funding rate

* Add Fundingrate alerts

* Send alert when big funding rate change + add SlashCommands.cs for fundingrate

* Remove fixtures

* Refact names

* Renames
This commit is contained in:
Oda
2024-07-19 08:31:09 +07:00
committed by GitHub
parent 545c9d8e4a
commit 029ba5f40e
41 changed files with 914 additions and 304 deletions

View File

@@ -17,19 +17,19 @@ jobs:
# npm install
# npm run build
# npm run test
- name: Create deploy.tar
uses: a7ul/tar-action@v1.1.0
with:
command: c
cwd: "./"
files: |
scripts/build_and_run.sh
captain-definition
outPath: deploy.tar
- name: Deploy App to CapRover
uses: caprover/deploy-from-github@v1.0.1
with:
server: '${{ secrets.CAPROVER_SERVER }}'
app: '${{ secrets.APP_NAME }}'
token: '${{ secrets.MANAGING_APPS }}'
# - name: Create deploy.tar
# uses: a7ul/tar-action@v1.1.0
# with:
# command: c
# cwd: "./"
# files: |
# scripts/build_and_run.sh
# captain-definition
# outPath: deploy.tar
# - name: Deploy App to CapRover
# uses: caprover/deploy-from-github@v1.0.1
# with:
# server: '${{ secrets.CAPROVER_SERVER }}'
# app: '${{ secrets.APP_NAME }}'
# token: '${{ secrets.MANAGING_APPS }}'
#

30
.github/workflows/dotnet.yml vendored Normal file
View File

@@ -0,0 +1,30 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore API dependencies
run: dotnet restore ./src/Managing.Api/Managing.Api.csproj
- name: Build API
run: dotnet build --no-restore ./src/Managing.Api/Managing.Api.csproj
- name: Restore Worker dependencies
run: dotnet restore ./src/Managing.Api.Workers/Managing.Api.Workers.csproj
- name: Build Worker
run: dotnet build --no-restore ./src/Managing.Api.Workers/Managing.Api.Workers.csproj