name: Build and Test on: pull_request: jobs: test: name: Build and Test runs-on: ubuntu-20.04-8core-sl permissions: contents: read strategy: fail-fast: false matrix: images: - container-build-target: final_slim image-id-prefix: slim- deployment-environment-identifier: Production-SLIM image-id: slim - container-build-target: final_standard image-id-prefix: "" deployment-environment-identifier: Production image-id: standard timeout-minutes: 60 steps: - name: Checkout Code uses: actions/checkout@v3 with: fetch-depth: 0 - name: Update action.yml run: yq '.runs.image = "docker://ghcr.io/github/super-linter:${{ matrix.images.image-id }}"' -i action.yml - name: Retrieve Datetime run: echo "BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> "${GITHUB_ENV}" - name: Build Docker Image run: | docker build --build-arg "BUILD_DATE=${date}" \ --build-arg "BUILD_DATE=${revision}" \ --build-arg "BUILD_VERSION=${version}" \ --target "${target}" \ --tag "ghcr.io/github/super-linter:${tag}" . env: date: ${{ env.BUILD_DATE }} revision: ${{ github.sha }} tag: ${{ matrix.images.image-id }} target: ${{ matrix.images.container-build-target }} version: ${{ github.sha }} - name: Lint Codebase if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }} uses: ./ env: ACTIONS_RUNNER_DEBUG: true ERROR_ON_MISSING_EXEC_BIT: true VALIDATE_ALL_CODEBASE: false GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} DEFAULT_BRANCH: main LOCAL_UPDATES: true - name: Run Test Suite if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }} run: make IMAGE=${{ matrix.images.image-id }} test - name: Upload the code coverage report if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }} uses: codacy/codacy-coverage-reporter-action@v1.1 # Sometimes this fails when user does not have permissions to secrets continue-on-error: true with: project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} coverage-reports: test/reports/cobertura/runTests.sh/cobertura.xml - name: Run Super-Linter Tests if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }} run: | docker run \ -e RUN_LOCAL=true \ -e TEST_CASE_RUN=true \ -e ANSIBLE_DIRECTORY=.automation/test/ansible \ -e ACTIONS_RUNNER_DEBUG=true \ -e ERROR_ON_MISSING_EXEC_BIT=true \ -v "${GITHUB_WORKSPACE}:/tmp/lint" \ "ghcr.io/github/super-linter:${tag}" env: tag: ${{ matrix.images.image-id }} - name: Lint Codebase if: ${{ github.repository == 'github/super-linter' && github.ref != 'refs/heads/main' }} run: | docker run \ -e RUN_LOCAL=true \ -e OUTPUT_DETAILS=detailed \ -e ACTIONS_RUNNER_DEBUG=true \ -e ERROR_ON_MISSING_EXEC_BIT=true \ -v "${GITHUB_WORKSPACE}:/tmp/lint" \ "ghcr.io/github/super-linter:${tag}" env: tag: ${{ matrix.images.image-id }}