-
-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
236 changed files
with
4,315 additions
and
2,736 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Integration tests | ||
|
||
on: | ||
schedule: | ||
- cron: '0 2 1 * *' | ||
|
||
jobs: | ||
build: | ||
# ================================================================================================================== | ||
# Configuration. | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# ================================================================================================================ | ||
- name: Retrieve the sources | ||
uses: actions/checkout@v1 | ||
|
||
# ================================================================================================================ | ||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11.0.x | ||
|
||
# ================================================================================================================ | ||
- name: Build, run tests, package and deploy to Maven central | ||
env: # Environment variables. | ||
# Kucoin credentials. | ||
KUCOIN_NAME: ${{ secrets.KUCOIN_NAME }} | ||
KUCOIN_USERNAME: ${{ secrets.KUCOIN_USERNAME }} | ||
KUCOIN_PASSPHRASE: ${{ secrets.KUCOIN_PASSPHRASE }} | ||
KUCOIN_KEY: ${{ secrets.KUCOIN_KEY }} | ||
KUCOIN_SECRET: ${{ secrets.KUCOIN_SECRET }} | ||
run: | | ||
mvn -Pintegration package |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
38 changes: 38 additions & 0 deletions
38
spring-boot-starter-test/autoconfigure/src/test/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# | ||
# Exchange configuration. | ||
cassandre.trading.bot.exchange.name=kucoin | ||
cassandre.trading.bot.exchange.username=[email protected] | ||
cassandre.trading.bot.exchange.passphrase=cassandre | ||
cassandre.trading.bot.exchange.key=5df8eea30092f40009cb3c6a | ||
cassandre.trading.bot.exchange.secret=5f6e91e0-796b-4947-b75e-eaa5c06b6bed | ||
# | ||
# Exchange specification. | ||
# cassandre.trading.bot.exchange.proxyHost=127.0.0.1 | ||
# cassandre.trading.bot.exchange.proxyPort=4780 | ||
# | ||
# Modes. | ||
cassandre.trading.bot.exchange.modes.sandbox=true | ||
cassandre.trading.bot.exchange.modes.dry=false | ||
# | ||
# Exchange API calls rates (ms or standard ISO 8601 duration like 'PT5S'). | ||
cassandre.trading.bot.exchange.rates.account=100 | ||
cassandre.trading.bot.exchange.rates.ticker=101 | ||
cassandre.trading.bot.exchange.rates.trade=102 | ||
# | ||
# Database used for backup. | ||
spring.datasource.driver-class-name=org.hsqldb.jdbc.JDBCDriver | ||
spring.datasource.url=jdbc:hsqldb:mem:cassandre | ||
spring.datasource.username=sa | ||
spring.datasource.password= | ||
# | ||
# ====================================================================================================================== | ||
# Technical parameters for tests. | ||
# | ||
# Console logging pattern. | ||
logging.pattern.console=%d{HH:mm:ss} - %msg%n | ||
# | ||
# File logging pattern. | ||
logging.pattern.file=%d{HH:mm:ss} - %msg%n | ||
# | ||
# Useful for tests. | ||
spring.main.allow-bean-definition-overriding=true |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.