Skip to content

Update readme.md

Update readme.md #46

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Create config.toml
env:
SECRET: ${{ secrets.OPENAI_API_KEY }}
run: |
echo "OPENAI_API_KEY = '$SECRET'" > config.toml
echo "HISTORY_FILE_NAME = 'history.csv'" >> config.toml
echo "DEBUG = true" >> config.toml
- name: pre test
run: |
cat config.toml
- name: Test
uses: onichandame/python-test-action@master