mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 04:07:57 +00:00
adf847a582
* Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Update fmt-check.yml * Update .github/workflows/check-licenses.yml Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update .github/workflows/check-markdown.yml Co-authored-by: Chevdor <chevdor@users.noreply.github.com> * Update .github/workflows/fmt-check.yml Co-authored-by: Chevdor <chevdor@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sergejs Kostjucenko <85877331+sergejparity@users.noreply.github.com> Co-authored-by: Chevdor <chevdor@users.noreply.github.com>
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
name: Check licenses
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
permissions:
|
|
packages: read
|
|
|
|
jobs:
|
|
check-licenses:
|
|
runs-on: ubuntu-22.04
|
|
env:
|
|
LICENSES: "'Apache-2.0' 'GPL-3.0-only' 'GPL-3.0-or-later WITH Classpath-exception-2.0'"
|
|
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
|
- uses: actions/setup-node@v3.8.1
|
|
with:
|
|
node-version: "18.x"
|
|
registry-url: "https://npm.pkg.github.com"
|
|
scope: "@paritytech"
|
|
|
|
- name: Check the licenses in Polkadot
|
|
run: |
|
|
shopt -s globstar
|
|
npx @paritytech/license-scanner scan \
|
|
--ensure-licenses ${{ env.LICENSES }} \
|
|
-- ./polkadot/**/*.rs
|
|
|
|
- name: Check the licenses in Cumulus
|
|
run: |
|
|
shopt -s globstar
|
|
npx @paritytech/license-scanner scan \
|
|
--ensure-licenses ${{ env.LICENSES }} \
|
|
--exclude ./cumulus/parachain-template \
|
|
-- ./cumulus/**/*.rs
|
|
|
|
- name: Check the licenses in Substrate
|
|
run: |
|
|
shopt -s globstar
|
|
npx @paritytech/license-scanner scan \
|
|
--ensure-licenses ${{ env.LICENSES }} \
|
|
--exclude ./substrate/bin/node-template \
|
|
-- ./substrate/**/*.rs
|