Skip to content

[version] bump version to 0.8.39 (#7957) #20

[version] bump version to 0.8.39 (#7957)

[version] bump version to 0.8.39 (#7957) #20

Workflow file for this run

name: Unit Testing
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
# You can use PyPy versions in python-version.
# For example, pypy-2.7 and pypy-3.8
matrix:
python-version: ["3.10", "3.9", "3.8"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r data_requirements.txt
- name: Run testing
env:
CI: true
run: pytest tests