jenia81 PR checker #204
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: PR-check | |
run-name: ${{ github.actor }} PR checker | |
on: | |
push: | |
workflow_dispatch: | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: pe-utils-'${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
run-shellcheck-and-scripts: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: shellcheck --version | |
- name: Shellcheck fw-tools/edge-testnet | |
run: shellcheck fw-tools/edge-testnet | |
- name: Run edge-testnet | |
run: | | |
fw-tools/edge-testnet -e | |
- run: shellcheck edge-info/edge-info | |
- run: cat /etc/os-release | |
- run: edge-info/edge-info | |
run-identity-tool-tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run identity-tools tests | |
run: | | |
cd identity-tools/test-cases | |
./test.sh | |
- name: Create one developer identity-tools | |
run: | | |
cd identity-tools/developer_identity | |
./create-dev-identity.sh -h | |
./create-dev-identity.sh -d -w CI-test | |
run-pysh-check: | |
runs-on: ubuntu-22.04 | |
env: | |
PA_TOKEN: ${{ secrets.ACCESS_TOKEN }} # IzumaBOT Access Token | |
steps: | |
- uses: actions/checkout@v3 | |
# Install pyshcheck tooling | |
- run: sudo apt install pycodestyle pydocstyle black | |
# git instead of rules to use access token | |
- run: git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github.com/".insteadOf "[email protected]:" | |
- run: git config --global url."https://${{ secrets.ACCESS_TOKEN }}@github".insteadOf "https://github" | |
- run: git config --list | |
# Linux coreutils is already installed wc -command can be found. | |
- run: git clone [email protected]:PelionIoT/scripts-internal.git | |
#- run: git clone https://github.com/PelionIoT/scripts-internal.git | |
- run: echo "." >scripts-internal/.nopyshcheck | |
- run: .github/workflows/pysh-checker.sh ${{ github.event.repository.default_branch }} ${{ github.ref_name }} | |
run-edge-testnet: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run edge-testnet | |
run: fw-tools/edge-testnet | |
- name: Run edge-testnet as fake snap | |
run: SNAP=snap fw-tools/edge-testnet | |
versions-check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: ./check_versions.sh | |
misspell: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Run misspell (findings may not increase) | |
run: | | |
curl -L -o ./install-misspell.sh https://git.io/misspell | |
sh ./install-misspell.sh | |
bin/misspell -i mosquitto | |
run-edge-info: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- run: | | |
cd edge-info | |
./edge-info | |
out=$(./edge-info) | |
# If we find \u* anything in the output, | |
# likely a echo -e mistake | |
if echo "$out" | grep -q "\\\\u"; then | |
echo "The string contains \\u" | |
echo "Likely a echo -e mistake" | |
exit 1 | |
fi |