fix: Install ansible and community.crypto collection for ansible-lint #891
Workflow file for this run
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: Main | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| syntax-check: | |
| name: Ansible syntax check | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 | |
| with: | |
| python-version: '3.11' | |
| cache: 'pip' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Check Ansible playbook syntax | |
| run: ansible-playbook main.yml --syntax-check | |
| basic-tests: | |
| name: Basic sanity tests | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 | |
| with: | |
| python-version: '3.11' | |
| cache: 'pip' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| sudo apt-get update && sudo apt-get install -y shellcheck | |
| - name: Run basic sanity tests | |
| run: | | |
| python tests/unit/test_basic_sanity.py | |
| python tests/unit/test_config_validation.py | |
| python tests/unit/test_certificate_validation.py | |
| python tests/unit/test_user_management.py | |
| python tests/unit/test_openssl_compatibility.py | |
| python tests/unit/test_cloud_provider_configs.py | |
| docker-build: | |
| name: Docker build test | |
| runs-on: ubuntu-22.04 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| with: | |
| persist-credentials: false | |
| - name: Build Docker image | |
| run: docker build -t local/algo:test . | |
| - name: Test Docker image starts | |
| run: | | |
| # Just verify the image can start and show help | |
| docker run --rm local/algo:test /algo/algo --help | |
| config-generation: | |
| name: Configuration generation test | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 10 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
| with: | |
| persist-credentials: false | |
| - uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 # v5.2.0 | |
| with: | |
| python-version: '3.11' | |
| cache: 'pip' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Test configuration generation (local mode) | |
| run: | | |
| # Run our simplified config test | |
| chmod +x tests/test-local-config.sh | |
| ./tests/test-local-config.sh |