diff --git a/.github/workflows/ci-single-platform.yaml b/.github/workflows/ci-single-platform.yaml index 91cd9a0a..5e9ebae9 100644 --- a/.github/workflows/ci-single-platform.yaml +++ b/.github/workflows/ci-single-platform.yaml @@ -4,14 +4,10 @@ on: platform: required: true type: string - name: - required: false - type: string - default: ${{ inputs.platform }} jobs: ci: - name: ${{ inputs.name }} + name: CI runs-on: ${{ inputs.platform }} defaults: run: diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index caa904ba..d994a9be 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -13,17 +13,14 @@ jobs: name: Ubuntu uses: ./.github/workflows/ci-single-platform.yaml with: - name: Ubuntu platform: ubuntu-latest macos: name: MacOS uses: ./.github/workflows/ci-single-platform.yaml with: - name: MacOS platform: macos-latest win: name: Windows uses: ./.github/workflows/ci-single-platform.yaml with: - name: Windows platform: windows-latest