Skip to content

Do not run dh_strip_nondeterminism in Debian packaging (#3674) #2748

Do not run dh_strip_nondeterminism in Debian packaging (#3674)

Do not run dh_strip_nondeterminism in Debian packaging (#3674) #2748

Workflow file for this run

name: Bytes Run the test suite
on:
push:
branches:
- "main"
- "release-*"
tags:
- "*"
paths:
- bytes/**
- .github/workflows/bytes_test.yml
pull_request:
paths:
- bytes/**
- .github/workflows/bytes_test.yml
jobs:
test:
strategy:
fail-fast: false
matrix:
version: ["3.10", "3.11"]
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run unit tests
run: make utest build_args='--build-arg PYTHON_VERSION=${{ matrix.version }}'
working-directory: ./bytes
- name: Run integration tests
run: SLEEP_TIME=5 make itest build_args='--build-arg PYTHON_VERSION=${{ matrix.version }}'
working-directory: ./bytes