Added IMS support #522
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
| # SPDX-License-Identifier: Apache-2.0 | |
| # Copyright 2023 Canonical Ltd. | |
| # Copyright 2024 Intel Corporation | |
| name: CI Pipeline | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| permissions: | |
| contents: read | |
| actions: read | |
| security-events: write | |
| id-token: write | |
| attestations: write | |
| uses: omec-project/.github/.github/workflows/build.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| branch_name: ${{ github.ref }} | |
| docker-build: | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| attestations: write | |
| uses: omec-project/.github/.github/workflows/docker-build.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| branch_name: ${{ github.ref }} | |
| static-analysis: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| actions: read | |
| id-token: write | |
| attestations: write | |
| uses: omec-project/.github/.github/workflows/static-analysis.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| branch_name: ${{ github.ref }} | |
| lint: | |
| permissions: | |
| contents: read | |
| checks: write | |
| id-token: write | |
| attestations: write | |
| uses: omec-project/.github/.github/workflows/lint.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| golangci_lint_version: 'v2.11.3' | |
| branch_name: ${{ github.ref }} | |
| hadolint: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| id-token: write | |
| attestations: write | |
| uses: omec-project/.github/.github/workflows/hadolint.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| branch_name: ${{ github.ref }} | |
| license-check: | |
| permissions: | |
| contents: read | |
| id-token: write | |
| attestations: write | |
| uses: omec-project/.github/.github/workflows/license-check.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| branch_name: ${{ github.ref }} | |
| fossa-scan: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| id-token: write | |
| attestations: write | |
| uses: omec-project/.github/.github/workflows/fossa-scan.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| branch_name: ${{ github.ref }} | |
| unit-tests: | |
| permissions: | |
| contents: read | |
| checks: write | |
| id-token: write | |
| attestations: write | |
| uses: omec-project/.github/.github/workflows/unit-test.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| branch_name: ${{ github.ref }} | |
| analysis: | |
| if: github.repository_owner == 'omec-project' | |
| permissions: | |
| actions: read | |
| artifact-metadata: read | |
| attestations: read | |
| checks: read | |
| code-quality: read | |
| contents: read | |
| deployments: read | |
| discussions: read | |
| id-token: write | |
| issues: read | |
| models: read | |
| packages: read | |
| pages: read | |
| pull-requests: read | |
| repository-projects: read | |
| security-events: write | |
| statuses: read | |
| vulnerability-alerts: read | |
| uses: omec-project/.github/.github/workflows/scorecard-analysis.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| branch_name: ${{ github.ref }} | |
| e2e-tests: | |
| if: github.event_name == 'pull_request' | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| checks: write | |
| id-token: write | |
| attestations: write | |
| uses: omec-project/.github/.github/workflows/e2e-test.yml@e05a6a6c35278d4b7f9f03da4474e49d869edf2f # v0.0.27 | |
| with: | |
| branch_name: ${{ github.ref }} |