feat: support setting udp buffer size in run time #316
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: python-dlt-ci-actions | |
on: [push, pull_request] | |
jobs: | |
run-test-for-python-dlt: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
LIBDLT_VERSION: | |
- "v2.18.8" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build python-dlt unit test docker image | |
id: docker_build | |
uses: docker/build-push-action@v2 | |
with: | |
push: false | |
build-args: | | |
LIBDLT_VERSION=${{ matrix.LIBDLT_VERSION }} | |
tags: python-dlt/python-dlt-unittest:${{ matrix.LIBDLT_VERSION }} | |
- name: lint check for the code base | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: python-dlt/python-dlt-unittest:${{ matrix.LIBDLT_VERSION }} | |
options: -v ${{ github.workspace }}:/pydlt -w /pydlt | |
run: tox -e black,ruff | |
- name: Run unit test | |
uses: addnab/docker-run-action@v3 | |
with: | |
image: python-dlt/python-dlt-unittest:${{ matrix.LIBDLT_VERSION }} | |
options: -v ${{ github.workspace }}:/pydlt -w /pydlt | |
run: tox |