Collect and expose compile-only dependencies through ApplicationModel #104
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: quarkus-github-bot.yml lint | |
on: | |
push: | |
paths: | |
- '.github/quarkus-github-bot.yml' | |
pull_request: | |
paths: | |
- '.github/quarkus-github-bot.yml' | |
jobs: | |
lint: | |
name: "quarkus-github-bot.yml validation" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install yamllint | |
shell: bash | |
run: sudo apt-get install -y yamllint | |
- name: run yamllint for quarkus-github-bot.yml | |
shell: bash | |
run: yamllint -c .github/yamllint.conf .github/quarkus-github-bot.yml |