Skip to content

chore(deps): bump com.huaweicloud.sdk:huaweicloud-sdk-iam from 3.1.11… #245

chore(deps): bump com.huaweicloud.sdk:huaweicloud-sdk-iam from 3.1.11…

chore(deps): bump com.huaweicloud.sdk:huaweicloud-sdk-iam from 3.1.11… #245

Workflow file for this run

name: Run Tests
on:
workflow_call:
workflow_dispatch:
push:
branches: [ main, release/*, bugfix/* ]
pull_request:
branches: [ main, release/*, bugfix/* ]
paths-ignore:
- '**.md'
- 'docs/**'
- 'CODEOWNERS'
- 'LICENSE'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
CodeQL:

Check failure on line 22 in .github/workflows/verify.yaml

View workflow run for this annotation

GitHub Actions / Run Tests

Invalid workflow file

The workflow is not valid. .github/workflows/verify.yaml (Line: 22, Col: 3): Error calling workflow 'eclipse-edc/.github/.github/workflows/codeql-analysis.yml@main'. The nested job 'analyze' is requesting 'security-events: write', but is only allowed 'security-events: none'.
uses: eclipse-edc/.github/.github/workflows/codeql-analysis.yml@main
secrets: inherit
Checkstyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: eclipse-edc/.github/.github/actions/setup-build@main
- name: Run Checkstyle
run: ./gradlew checkstyleMain checkstyleTest
Unit-Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: eclipse-edc/.github/.github/actions/setup-build@main
- name: Run unit tests
run: ./gradlew test
Component-Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: eclipse-edc/.github/.github/actions/setup-build@main
- name: Component Tests
run: ./gradlew -DincludeTags="ComponentTest"
Integration-Tests:
uses: ./.github/workflows/integration-tests.yaml
secrets: inherit
API-Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: eclipse-edc/.github/.github/actions/setup-build@main
- name: Component Tests
run: ./gradlew test -DincludeTags="ApiTest"