Skip to content

add secrets

add secrets #25

Workflow file for this run

name: build
on: [ push, pull_request ]
jobs:
build:
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
PAREA_API_KEY: ${{ secrets.OPENAI_API_KEY }}
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Install poetry
run: make poetry-download
- name: Set up cache
uses: actions/[email protected]
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install
- name: Run style checks
run: |
make check-codestyle
- name: Unit tests
run: make unit-test
- name: Integration tests
run: make integration-test