Skip to content

isort導入 [#65]

isort導入 [#65] #18

Workflow file for this run

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out repositry
uses: actions/checkout@v4
- name: Create .env file
run: |
touch .env
echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> .env
echo "VOICEVOX_API_KEY=${{ secrets.VOICEVOX_API_KEY }}" >> .env
- name: Run docker-compose Build
run: docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build -d
- name: Run test
run: docker compose run --entrypoint "poetry run pytest" api