Skip to content

Automated update by SDK Generator #89

Automated update by SDK Generator

Automated update by SDK Generator #89

Workflow file for this run

name: Unit Test
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest urllib3 python-dateutil
pip install -e .
- name: Unit Test
run: pytest
- name: Automerge
uses: pascalgn/[email protected]
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
MERGE_LABELS: ''
MERGE_METHOD: squash