Fix gitattributes and install build tools for CI

This commit is contained in:
thePR0M3TH3AN
2025-06-29 18:00:04 -04:00
parent c02f8d9c10
commit df2a776a0a
2 changed files with 22 additions and 1 deletions

12
.gitattributes vendored
View File

@@ -1 +1,11 @@
* text eol=lf
* text=auto eol=lf
*.png binary
*.jpg binary
*.jpeg binary
*.gif binary
*.svg binary
*.ico binary
*.pdf binary
*.eps binary
*.ai binary
*.penpot binary

View File

@@ -17,6 +17,17 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install build tools
shell: bash
run: |
if [ "$RUNNER_OS" = "Linux" ]; then
sudo apt-get update
sudo apt-get install -y pkg-config build-essential
elif [ "$RUNNER_OS" = "macOS" ]; then
brew install pkg-config
else
choco install pkgconfiglite -y
fi
- name: Cache pip
uses: actions/cache@v3
with: