複数のFunction callingに対応出来る形に変更 #197
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: ci | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
DB_HOST: ai-cat-api-mysql | |
DB_NAME: ai_cat_api_test | |
DB_USERNAME: root | |
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | |
PLANET_SCALE_SERVICE_TOKEN_ID: ${{ secrets.PLANET_SCALE_SERVICE_TOKEN_ID }} | |
PLANET_SCALE_SERVICE_TOKEN_SECRET: ${{ secrets.PLANET_SCALE_SERVICE_TOKEN_SECRET }} | |
PLANET_SCALE_ORG: ${{ secrets.PLANET_SCALE_ORG }} | |
PLANET_SCALE_TEST_DB_NAME: ${{ secrets.PLANET_SCALE_TEST_DB_NAME }} | |
PLANET_SCALE_TEST_DB_BRANCH: ${{ secrets.PLANET_SCALE_TEST_DB_BRANCH }} | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Docker set up | |
run: | | |
docker compose up --build -d | |
- name: run CI | |
run: | | |
make ci |