Added MAANG Companies' logo and also added icon for ruby lang too #55
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: Check Icon Sync with Python | |
| on: | |
| push: | |
| paths: | |
| - 'icons/dark/**' | |
| - 'icons/light/**' | |
| pull_request: | |
| paths: | |
| - 'icons/dark/**' | |
| - 'icons/light/**' | |
| jobs: | |
| icon-sync-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Run icon sync checker | |
| run: python scripts/check_icon_sync.py |