Remove alpha channel from PNG images (#70) #3
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: image-scan | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.13" | |
- name: Install Pillow | |
run: pip install pillow | |
- name: Scan images | |
run: python3 check_png_format.py . |