Skip to content

Update Dockerfile to include omnipy_examples package #118

Update Dockerfile to include omnipy_examples package

Update Dockerfile to include omnipy_examples package #118

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
matrix:
# python-version: ["3.7", "3.8", "3.9", "3.10"]
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
curl -sSL https://install.python-poetry.org | python3 -
$HOME/.local/bin/poetry install
- name: Install locale - de_DE.UTF-8
run: |
sudo locale-gen de_DE.UTF-8
sudo update-locale LANG=de_DE.UTF-8
- name: Test with pytest
run: |
source $(poetry env info --path)/bin/activate
pytest