Merge pull request #3960 from the-turing-way/crowdin-contributors/patch #11165
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
# Give your test a name! | |
name: TestFileSizes | |
# Decide when to run the tests | |
# | |
# This configuration sets the test to run on pushes to main | |
# and on pull requests that are opened to main | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# Set up the Continuous Integration job | |
jobs: | |
testfilesizes: | |
# Run on the latest Ubuntu distribution | |
runs-on: ubuntu-latest | |
# This section collects together the steps involved in running the test | |
steps: | |
# Checkout the repository. Relies on another GH-Action. | |
- uses: actions/checkout@v4 | |
# Run the script to check file sizes | |
- name: Check for large files | |
run: | | |
./tests/test-file-size.sh |