docs: mark AWX importer v2 follow-ups as shipped; note RBAC fix in 20… #15
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate docker-compose files | |
| run: | | |
| cp .env.example .env | |
| docker compose -f docker-compose.yml config -q | |
| docker compose -f docker-compose.yml -f docker-compose.dev.yml config -q | |
| - name: Shellcheck scripts | |
| uses: ludeeus/action-shellcheck@master | |
| with: | |
| scandir: ./scripts | |
| continue-on-error: true |