Skip to content

Add a simple build and smoke workflow - and package (#20) #15

Add a simple build and smoke workflow - and package (#20)

Add a simple build and smoke workflow - and package (#20) #15

Workflow file for this run

name: Pre-commit
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11' # Specify the Python version you need
- name: Install pre-commit
run: |
pip install pre-commit
- name: Run pre-commit hooks
run: |
pre-commit run --all-files