reduce image sizes by using common wreadsb base image for images that use mlat-client #350
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: Linting (YAML) | |
on: | |
pull_request: | |
branches: | |
- main | |
# only run when yaml files are updated | |
paths: | |
- "**.yml" | |
jobs: | |
yamllint: | |
name: Run yamllint against YAML files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3.1.1 | |
with: | |
config_data: | | |
extends: default | |
rules: | |
line-length: | |
max: 120 | |
level: warning |