chore(deps,substrait)!: bump substrait from a0a10bb
to 5b70acd
#651
Workflow file for this run
This file contains 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 | |
name: Check | |
on: [push, pull_request] | |
jobs: | |
license: | |
name: SPDX License Header | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: enarx/spdx@master | |
with: | |
licenses: Apache-2.0 | |
formatting: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- run: npm install prettier prettier-plugin-toml | |
- run: npx prettier --check --no-config . |