Update 02b_Swamps_Jamolar.cfg #265
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: lint | |
| on: [push, pull_request] | |
| env: | |
| WESNOTH_VERSION: 1.18.2 | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Lint WML | |
| uses: czyzby/wesnoth-wml-linter@v1 | |
| with: | |
| wesnoth-version: ${{ env.WESNOTH_VERSION }} | |
| spellcheck: false | |
| lint-flags: -K | |
| - name: Verify resources scope | |
| uses: czyzby/wesnoth-wml-scope@v1 | |
| with: | |
| wesnoth-version: ${{ env.WESNOTH_VERSION }} | |
| flags: -C | |
| - name: Verify images | |
| uses: czyzby/wesnoth-png-optimizer@v1 | |
| if: always() | |
| with: | |
| wesnoth-version: ${{ env.WESNOTH_VERSION }} | |
| threshold: 45 |