Fix Man and Woman Deaf emoji genders #23
Workflow file for this run
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
# Run script to check asset data/metadata for consistency. | |
name: Check Asset Consistency | |
on: | |
# Triggers the workflow on pull request events but only for the "main" branch | |
pull_request: | |
branches: [ "main" ] | |
push: | |
branches: [ "*" ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
check_assets: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set Up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Run Asset Check Script | |
run: | | |
python scripts/check_assets.py assets |