Skip to content

Add Excel_File_Format.enso and bring readers into the ExcelFormatStrategy #9095

Add Excel_File_Format.enso and bring readers into the ExcelFormatStrategy

Add Excel_File_Format.enso and bring readers into the ExcelFormatStrategy #9095

# This file is not auto-generated. Feel free to edit it.
name: ✨ Engine
on:
push:
branches:
- develop
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-engine-pull-request
cancel-in-progress: ${{ github.ref != 'refs/heads/develop' }}
permissions:
checks: write
pull-requests: write
jobs:
engine-changed-files:
name: 🔍 Files Changed
uses: ./.github/workflows/engine-changed-files.yml
secrets: inherit
engine-checks:
name: ⚙️ Checks
uses: ./.github/workflows/engine-checks.yml
needs: [engine-changed-files]
if: needs.engine-changed-files.outputs.any_changed == 'true' || github.ref == 'refs/heads/develop'
secrets: inherit
engine-checks-optional:
name: ⚙️ Checks (Optional)
uses: ./.github/workflows/engine-checks-optional.yml
needs: [engine-changed-files, engine-checks]
if: needs.engine-changed-files.outputs.any_changed == 'true' || github.ref == 'refs/heads/develop'
secrets: inherit
stdlib-api-changes-label:
name: 🏷 Append labels to PR
uses: ./.github/workflows/std-libs-labels.yml
secrets: inherit
required-checks:
name: Engine Required Checks
runs-on: ubuntu-latest
needs: [engine-changed-files, engine-checks, stdlib-api-changes-label]
if: always()
steps:
- name: Checks Summary
run: |
echo "Engine Checks: ${{ needs.engine-checks.result }}"
any_changed='${{ needs.engine-changed-files.outputs.any_changed }}'
case '${{ needs.engine-checks.result }}' in
'failure')
exit 1
;;
'skipped' | 'cancelled')
if [[ "$any_changed" == 'true' ]]; then
exit 1
fi
;;
esac
echo "Success!"