name: CI on: push: pull_request: schedule: - cron: '0 6 * * *' env: NAMESPACE: grafana COLLECTION_NAME: grafana jobs: sanity: name: Sanity (Ⓐ${{ matrix.ansible }}) strategy: matrix: ansible: - stable-2.10 - stable-2.11 - stable-2.12 - devel runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v3 with: path: ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - name: Set up Python uses: actions/setup-python@v3 with: python-version: '3.9' - name: Install ansible-base (${{ matrix.ansible }}) run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check - name: Run sanity tests run: ansible-test sanity --docker -v --color --coverage working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - name: Generate coverage report run: ansible-test coverage xml -v --requirements --group-by command --group-by version working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - uses: codecov/codecov-action@v3 with: fail_ci_if_error: false