[ci] Cleanup and order GHA workflows #7324
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
name: Check workspace | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
check-workspace: | |
runs-on: arc-runners-polkadot-sdk | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.0 (22. Sep 2023) | |
- name: install python deps | |
run: | | |
sudo apt-get update && sudo apt-get install -y python3-pip python3 | |
pip3 install toml | |
- name: check integrity | |
run: > | |
python3 .github/scripts/check-workspace.py . | |
--exclude | |
"substrate/frame/contracts/fixtures/build" | |
"substrate/frame/contracts/fixtures/contracts/common" |