docs | updated CHANGELOG and WS9 roadmap for issue #234. Closes #234 #377
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: Validate-YAMLs | |
| on: | |
| push: | |
| branches: [master, develop] | |
| jobs: | |
| validate-yamls: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📂 Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: 🐍 Install yamllint | |
| run: | | |
| python3 -m pip install --upgrade pip | |
| python3 -m pip install yamllint | |
| - name: ✅ Lint workflow YAML files | |
| run: | | |
| yamllint \ | |
| -c "${{ github.workspace }}/.github/workflows/yamlint.conf" \ | |
| "${{ github.workspace }}/.github/workflows/"*.yml |