Skip to content

docker actions initial commit #31

docker actions initial commit

docker actions initial commit #31

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test Datastream Python
on:
push:
branches:
- main
paths:
- 'python_tools/**'
- '.github/workflows/datastream_python.yml'
pull_request:
branches:
- main
paths:
- 'python_tools/**'
- '.github/workflows/datastream_python.yml'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ./python_tools
pip install pytest
- name: Test with pytest
run: |
python -m pytest -vv python_tools/