diff --git a/.github/workflows/ci-master-only.yml b/.github/workflows/ci-master-only.yml index 132a2f315..dc78d17e9 100644 --- a/.github/workflows/ci-master-only.yml +++ b/.github/workflows/ci-master-only.yml @@ -10,5 +10,7 @@ jobs: name: Verify that podspec lints runs-on: macOS-10.14 steps: - - uses: actions/checkout@v1 - - run: ./build.sh cocoapods-lint + - name: Checkout the Git repository + uses: actions/checkout@v1 + - name: Run build.sh with cocoapods-lint mode + run: ./build.sh cocoapods-lint diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 277cab1cb..004e25362 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,5 +27,7 @@ jobs: name: ${{ matrix.name }} runs-on: macOS-10.14 steps: - - uses: actions/checkout@v1 - - run: ./build.sh ${{ matrix.mode }} + - name: Checkout the Git repository + uses: actions/checkout@v1 + - name: ${{ format('Run build.sh with mode {0}', matrix.mode) }} + run: ./build.sh ${{ matrix.mode }}