Skip to content

ADSY1100 round up clocks #73

ADSY1100 round up clocks

ADSY1100 round up clocks #73

Workflow file for this run

name: Unittests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7','3.8','3.9']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: pip install -r requirements/requirements_dev.txt
- run: pytest -vs
kuiper-test:
runs-on: ubuntu-latest
container:
image: debian:bullseye
steps:
- uses: actions/checkout@v2
- run: apt update
- run: apt install -y python3-pip python3-dev
- run: pip install -r requirements/requirements_dev.txt
- run: pytest -vs