Skip to content

- update version

- update version #8

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
env:
OOGA_BOOGA_API_KEY: ${{ secrets.OOGA_BOOGA_API_KEY }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
run: pytest tests/