chore(deps,cargo): bump once_cell from 1.19.0 to 1.20.0 in the cargo … #581
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 . |