symlinked images ignored by .gitignore. Logos should now work. #23
This file contains hidden or 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: Install from source and linting | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
check-lint: | |
name: Lint Code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pylint | |
pip install -e . | |
- name: Lint with pylint | |
run: | | |
pylint src/pyvale --fail-under=8.0 | |
install: | |
name: Test Installation ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, macos-13, macos-14] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Install libomp and set compiler on macos-13 | |
if: matrix.os == 'macos-13' | |
run: | | |
brew install libomp | |
echo "CC=$(brew --prefix llvm@15)/bin/clang" >> $GITHUB_ENV | |
echo "CXX=$(brew --prefix llvm@15)/bin/clang++" >> $GITHUB_ENV | |
echo "LDFLAGS=-L$(brew --prefix libomp)/lib" >> $GITHUB_ENV | |
echo "CPPFLAGS=-I$(brew --prefix libomp)/include" >> $GITHUB_ENV | |
- name: Install libomp and set compiler on macos-14 | |
if: matrix.os == 'macos-14' | |
run: | | |
brew install libomp | |
echo "CC=$(brew --prefix llvm@15)/bin/clang" >> $GITHUB_ENV | |
echo "CXX=$(brew --prefix llvm@15)/bin/clang++" >> $GITHUB_ENV | |
echo "LDFLAGS=-L$(brew --prefix libomp)/lib" >> $GITHUB_ENV | |
echo "CPPFLAGS=-I$(brew --prefix libomp)/include" >> $GITHUB_ENV | |
- name: Test package installation | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e . | |
- name: Smoke test | |
run: | | |
python -c "import pyvale" | |
- name: Run Blender pytests | |
run: | | |
pytest -v tests/blender/. |