Merge pull request #21 from valory-xyz/fix/linter-errors #97
This file contains hidden or 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: main_workflow | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - main | |
| pull_request: | |
| jobs: | |
| lock_check: | |
| continue-on-error: False | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, macos-latest-large, windows-latest ] | |
| python-version: [ "3.14" ] | |
| poetry-version: ["1.3.2"] | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install and configure Poetry | |
| uses: snok/install-poetry@v1 | |
| with: | |
| version: ${{ matrix.poetry-version }} | |
| virtualenvs-create: true | |
| virtualenvs-in-project: false | |
| virtualenvs-path: ~/my-custom-path | |
| installer-parallel: true | |
| copyright_and_dependencies_check: | |
| continue-on-error: False | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| python-version: [ "3.14" ] | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v3 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update --fix-missing | |
| sudo apt-get autoremove | |
| sudo apt-get autoclean | |
| pip install tomte[tox,cli]==0.6.2 | |
| pip install --upgrade setuptools==60.10.0 | |
| - name: Check copyright headers | |
| run: tomte check-copyright --author author_name | |
| - name: License compatibility check | |
| run: tox -e liccheck | |
| - name: Check dependencies | |
| run: tox -e check-dependencies | |
| - name: Check doc links | |
| run: tomte check-doc-links | |
| - name: Check doc IPFS hashes | |
| run: tox -e check-doc-hashes | |
| linter_checks: | |
| continue-on-error: False | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| python-version: [ "3.14" ] | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v3 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update --fix-missing | |
| sudo apt-get autoremove | |
| sudo apt-get autoclean | |
| pip install tomte[tox,cli]==0.6.2 | |
| pip install --user --upgrade setuptools | |
| # install Protobuf compiler | |
| wget https://github.com/protocolbuffers/protobuf/releases/download/v3.19.4/protoc-3.19.4-linux-x86_64.zip | |
| unzip protoc-3.19.4-linux-x86_64.zip -d protoc | |
| sudo mv protoc/bin/protoc /usr/local/bin/protoc | |
| # install IPFS | |
| sudo apt-get install -y wget | |
| wget -O ./go-ipfs.tar.gz https://dist.ipfs.io/go-ipfs/v0.6.0/go-ipfs_v0.6.0_linux-amd64.tar.gz | |
| tar xvfz go-ipfs.tar.gz | |
| sudo mv go-ipfs/ipfs /usr/local/bin/ipfs | |
| ipfs init | |
| # Install `mdspell` for spelling checks | |
| sudo npm install -g markdown-spellcheck | |
| - name: Security checks | |
| run: tomte check-security | |
| - name: Check packages | |
| run: tox -e check-packages | |
| - name: Check FSM Spec | |
| run: tox -e check-abciapp-specs | |
| - name: Check hash | |
| run: tox -e check-hash | |
| - name: Code checks | |
| run: tomte check-code | |
| - name: Check spelling | |
| run: tomte check-spelling | |
| scan: | |
| name: gitleaks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.17.7" | |
| - run: | | |
| wget https://github.com/zricethezav/gitleaks/releases/download/v8.10.1/gitleaks_8.10.1_linux_x64.tar.gz && \ | |
| tar -xzf gitleaks_8.10.1_linux_x64.tar.gz && \ | |
| sudo install gitleaks /usr/bin && \ | |
| gitleaks detect --report-format json --report-path leak_report | |
| test: | |
| continue-on-error: True | |
| needs: | |
| - lock_check | |
| - copyright_and_dependencies_check | |
| - linter_checks | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest, macos-latest-large, windows-latest ] | |
| python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ] | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v3 | |
| with: | |
| submodules: recursive | |
| python-version: ${{ matrix.python-version }} | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.17.7" | |
| - if: matrix.os == 'ubuntu-latest' | |
| name: Install dependencies (ubuntu-latest) | |
| run: | | |
| sudo apt-get update --fix-missing | |
| sudo apt-get autoremove | |
| sudo apt-get autoclean | |
| pip install tomte[tox]==0.6.2 | |
| pip install --upgrade setuptools==60.10.0 | |
| # install Protobuf compiler | |
| wget https://github.com/protocolbuffers/protobuf/releases/download/v3.11.4/protoc-3.11.4-linux-x86_64.zip | |
| unzip protoc-3.11.4-linux-x86_64.zip -d protoc | |
| sudo mv protoc/bin/protoc /usr/local/bin/protoc | |
| # install IPFS | |
| sudo apt-get install -y wget | |
| wget -O ./go-ipfs.tar.gz https://dist.ipfs.io/go-ipfs/v0.6.0/go-ipfs_v0.6.0_linux-amd64.tar.gz | |
| tar xvfz go-ipfs.tar.gz | |
| sudo mv go-ipfs/ipfs /usr/local/bin/ipfs | |
| ipfs init | |
| # install Tendermint | |
| wget -O tendermint.tar.gz https://github.com/tendermint/tendermint/releases/download/v0.34.19/tendermint_0.34.19_linux_amd64.tar.gz | |
| tar -xf tendermint.tar.gz | |
| sudo mv tendermint /usr/local/bin/tendermint | |
| # pull node image needed for the integration tests | |
| docker pull node:16.7.0 | |
| docker pull trufflesuite/ganache:beta | |
| docker pull valory/autonolas-registries:latest | |
| - if: matrix.os == 'ubuntu-latest' | |
| name: Unit tests (ubuntu-latest) | |
| run: | | |
| tox -e py${{ matrix.python-version }}-linux -- -m 'not e2e' | |
| - if: matrix.os == 'macos-latest-large' | |
| name: Install dependencies (macos-latest-large) | |
| run: | | |
| pip install tomte[tox]==0.6.2 | |
| # brew install protobuf | |
| # brew install https://raw.githubusercontent.com/Homebrew/homebrew-core/72457f0166d5619a83f508f2345b22d0617b5021/Formula/protobuf.rb | |
| wget https://github.com/protocolbuffers/protobuf/releases/download/v24.3/protoc-24.3-osx-x86_64.zip | |
| unzip protoc-24.3-osx-x86_64.zip -d protoc | |
| # install protolint | |
| curl -L -o protolint.tar.gz https://github.com/yoheimuta/protolint/releases/download/v0.50.2/protolint_0.50.2_darwin_amd64.tar.gz | |
| tar -xzvf protolint.tar.gz | |
| sudo mv protolint /usr/local/bin/protolint | |
| sudo chmod +x /usr/local/bin/protolint | |
| # install ipfs | |
| curl -L -o ipfs.tar.gz https://github.com/ipfs/kubo/releases/download/v0.6.0/go-ipfs_v0.6.0_darwin-amd64.tar.gz | |
| tar -xvzf ipfs.tar.gz | |
| cd go-ipfs | |
| sudo ./install.sh | |
| cd .. | |
| rm -rf go-ipfs | |
| ipfs init | |
| - if: matrix.os == 'macos-latest-large' | |
| name: Framework unit tests macos-latest-large | |
| run: | | |
| tox -e py${{ matrix.python-version }}-darwin -- -m 'not e2e' | |
| - if: matrix.os == 'windows-latest' | |
| name: Install dependencies (windows-latest) | |
| env: | |
| ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
| run: | | |
| python -m pip install -U pip | |
| echo "::add-path::C:\Program Files (x86)\Windows Kits\10\bin\10.0.18362.0\x64" | |
| choco source add -n chocolatey -s 'https://chocolatey.org/api/v2/' | |
| choco source enable -n chocolatey | |
| choco install wget -y | |
| choco install protoc --version 24.3 | |
| choco install mingw -y | |
| choco install make -y | |
| # to check make was installed | |
| make --version | |
| pip install tomte[tox]==0.6.2 | |
| # install ipfs | |
| curl -L -o go-ipfs.zip https://github.com/ipfs/kubo/releases/download/v0.6.0/go-ipfs_v0.6.0_windows-amd64.zip | |
| Expand-Archive -Path go-ipfs.zip -DestinationPath ~\Apps\ | |
| cp ~\Apps\go-ipfs\ipfs.exe C:\Users\runneradmin\go\bin\ | |
| ipfs init | |
| - if: matrix.os == 'windows-latest' | |
| name: Skills unit tests windows-latest | |
| run: | | |
| tox -e py${{ matrix.python-version }}-win -- -m 'not e2e' | |
| - if: matrix.os == 'ubuntu-latest' | |
| name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v1 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| file: ./coverage.xml | |
| flags: unittests | |
| name: codecov-umbrella | |
| fail_ci_if_error: false | |
| e2e-tests: | |
| continue-on-error: True | |
| needs: | |
| - test | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| python-version: [ "3.14" ] | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v3 | |
| with: | |
| submodules: recursive | |
| python-version: ${{ matrix.python-version }} | |
| - if: matrix.os == 'ubuntu-latest' | |
| name: Install dependencies (ubuntu-latest) | |
| run: | | |
| sudo apt-get update --fix-missing | |
| sudo apt-get autoremove | |
| sudo apt-get autoclean | |
| pip install tomte[tox]==0.6.2 | |
| pip install --upgrade setuptools==60.10.0 | |
| # install Protobuf compiler | |
| wget https://github.com/protocolbuffers/protobuf/releases/download/v3.11.4/protoc-3.11.4-linux-x86_64.zip | |
| unzip protoc-3.11.4-linux-x86_64.zip -d protoc | |
| sudo mv protoc/bin/protoc /usr/local/bin/protoc | |
| # install IPFS | |
| sudo apt-get install -y wget | |
| wget -O ./go-ipfs.tar.gz https://dist.ipfs.io/go-ipfs/v0.6.0/go-ipfs_v0.6.0_linux-amd64.tar.gz | |
| tar xvfz go-ipfs.tar.gz | |
| sudo mv go-ipfs/ipfs /usr/local/bin/ipfs | |
| ipfs init | |
| # install Tendermint | |
| wget -O tendermint.tar.gz https://github.com/tendermint/tendermint/releases/download/v0.34.19/tendermint_0.34.19_linux_amd64.tar.gz | |
| tar -xf tendermint.tar.gz | |
| sudo mv tendermint /usr/local/bin/tendermint | |
| # pull node image needed for the integration tests | |
| docker pull node:16.7.0 | |
| - name: e2e tests | |
| run: | | |
| tox -e py${{ matrix.python-version }}-linux -- -m 'e2e' |