Skip to content

Update Dockerfile to include omnipy_examples package #34

Update Dockerfile to include omnipy_examples package

Update Dockerfile to include omnipy_examples package #34

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
run-precommit:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
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 pre-commit
run: |
pip install pre-commit
- name: Run pre-commit autoupdate
run: pre-commit autoupdate
- name: Run pre-commit hooks with hook-stage "manual" (=checks only)
run: |
pre-commit run --hook-stage manual --all-files