[Textures] New index and 32 bit texture support article #170
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR CI | |
on: | |
pull_request: | |
branches: | |
- '**' | |
env: | |
GMC_ENABLE_ON_PUBLISH: true | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Checkout | |
uses: actions/checkout@v4 | |
with: | |
# Number of commits to fetch. 0 indicates all history. | |
# Default: 1 | |
# 0 is needed for the update time plugin to work properly | |
fetch-depth: 1 | |
- name: Install Python | |
id: install-python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
cache: pip | |
- name: Process Python Cache | |
id: cache-requirements | |
uses: actions/cache@v4 | |
with: | |
path: venv | |
key: requirements-${{ steps.install-python.outputs.python-version }}-${{ hashFiles('requirements*.txt') }} | |
- name: Install Uncached Requirements | |
if: steps.cache-requirements.outputs.cache-hit != 'true' | |
run: | | |
python -m venv venv | |
source venv/bin/activate | |
pip install -r requirements.txt | |
pip install -r requirements-deploy.txt | |
- name: Run prebuild tests | |
run: | | |
source venv/bin/activate | |
python -m unittest discover tests/ -v |