Add new logos #5
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: CI | |
on: [push, pull_request] | |
jobs: | |
format: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip3 install black | |
- run: python3 -m black . | |
- run: git --no-pager diff --exit-code HEAD | |
export: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install inkscape and imagemagick | |
run: | | |
sudo add-apt-repository ppa:inkscape.dev/stable | |
sudo apt-get update -q | |
sudo apt-get install inkscape imagemagick -y | |
- run: ./export.py | |
# Ignore .svg files because Ubuntu 22.04 inkscape has round-off issues and | |
# .ico files because Ubuntu 22.04 ImageMagick gives different results | |
- run: git --no-pager diff --exit-code HEAD -- . ':!export/ico' ':!export/svg' |