Skip to content

[docs]: Fixes and deployment to gh-pages #843

[docs]: Fixes and deployment to gh-pages

[docs]: Fixes and deployment to gh-pages #843

Workflow file for this run

name: ICON4Py Quality Assurance
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
jobs:
pre-commit-icon4py-model:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the repository
- uses: actions/checkout@v3
# Step 2: Install system dependencies
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libboost-all-dev
# Step 3: Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
# Step 4: Install all icon4py namespace packages
- name: Install all icon4py namespace packages
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install -r ./requirements-dev.txt
python -m pip list
# Step 5: Run pre-commit checks
- name: Run checks
run: |
pre-commit run