[readme] added endpoints and hided model info #122
Workflow file for this run
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
name: Java CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: maven | |
- name: Build with Maven | |
run: mvn --batch-mode --update-snapshots verify | |
- name: Bot name | |
run: echo "My BOT_NAME is ${{secrets.BOT_NAME}}" | |
- name: Bot token | |
run: echo "My BOT_TOKEN is ${{secrets.BOT_TOKEN}}" | |
- name: Bot chat id | |
run: echo "My BOT_CHAT_ID is ${{secrets.BOT_CHAT_ID}}" | |