Skip to content

Added shader for reflections from newest commit to fix problem with f… #58

Added shader for reflections from newest commit to fix problem with f…

Added shader for reflections from newest commit to fix problem with f… #58

Workflow file for this run

name: Pre-Commit Checks
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
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.x'
- name: Install dependencies
run: |
python -m venv .venv
source .venv/bin/activate
pip install pre-commit
pre-commit install
- name: Run pre-commit checks
run: |
source .venv/bin/activate
pre-commit run --all-files