Skip to content

Add CI/CD for StreamingDataFrames #53

Add CI/CD for StreamingDataFrames

Add CI/CD for StreamingDataFrames #53

name: CI
on:
push:
paths:
- 'src/StreamingDataFrames/**'
branches:
- 'main'
pull_request:
paths:
- 'src/StreamingDataFrames/**'
defaults:
run:
working-directory: 'src/StreamingDataFrames'
# Run only one workflow per PR or commit
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
# Disable default permissions for all jobs
permissions: { }
jobs:
lint:
# Temporary relax linter checks
continue-on-error: true
permissions:
contents: read # to fetch code (actions/checkout)
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install linters
run: |
python -m pip install -U -r requirements-dev.txt
- name: Run Black
run: |
python -m black --check streamingdataframes
python -m black --check tests
test:
needs: lint
permissions:
contents: read # to fetch code (actions/checkout)
name: Run Python tests (python${{ matrix.python }})
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
python: [ 3.11 ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Update pip
run: |
python -m pip install -U pip
- name: Install requirements
run: |
python -m pip install -U -r tests/requirements.txt
python -m pip install -U -r requirements.txt
- name: Run tests
run: |
python -m pytest -s -v -k TestConsumer
# build:
# needs: test
# permissions:
# contents: read # to fetch code (actions/checkout)
# name: Build wheels on ${{ matrix.os }}
# runs-on: ${{ matrix.os }}-latest
# strategy:
# matrix:
# python_ver: [3.11]
# os: [ubuntu, windows, macos]
# qemu: [ '' ]
# include:
# - os: ubuntu
# qemu: aarch64
# fail-fast: false
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Set up QEMU
# if: ${{ matrix.qemu }}
# uses: docker/setup-qemu-action@v3
# with:
# platforms: all
# - name: Prepare emulation
# shell: bash
# run: |
# if [[ -n "${{ matrix.qemu }}" ]]; then
# echo "CIBW_ARCHS_LINUX=${{ matrix.qemu }}" >> $GITHUB_ENV
# fi
# - name: Setup Python
# uses: actions/setup-python@v4
# with:
# python-version: ${{ matrix.python_ver }}
# - name: Update pip, wheel, setuptools, build
# run: |
# python -m pip install -U pip wheel setuptools build
# - name: Build wheels
# uses: pypa/cibuildwheel@v2.16.0
# env:
# CIBW_ARCHS_MACOS: x86_64 arm64 universal2
# - uses: actions/upload-artifact@v3
# name: Upload wheels
# with:
# path: ./wheelhouse/*.whl
# if-no-files-found: error