Skip to content

Add CI/CD for StreamingDataFrames #63

Add CI/CD for StreamingDataFrames

Add CI/CD for StreamingDataFrames #63

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
build:
# needs: test
permissions:
contents: read # to fetch code (actions/checkout)
name: Build wheels
runs-on: ubuntu-latest
strategy:
matrix:
python_ver: [3.11]
# os: [ubuntu]
# 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: 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
run: |
pip wheel --no-cache-dir --no-deps -w ${{ runner.temp }} .
- uses: actions/upload-artifact@v3
name: Upload wheels
with:
path: ${{ runner.temp }}/*.whl
if-no-files-found: error