simple-ifc/.github/workflows/ifc-lint.yml

33 lines
711 B
YAML

name: IFC Validation
on:
push:
pull_request:
jobs:
lint-ifc:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install ifcopenshell
run: |
pip install pytest
pip install ifcopenshell
- name: Run IFC lint checks
run: |
set -e
shopt -s globstar nullglob
for file in **/*.ifc; do
[[ "$file" == libraries/* ]] && continue
echo "Validating $file..."
python3 -m ifcopenshell.validate --rules "$file"
done