[GUI] Fix possible division-by-zero bug in superblock time left #71
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: CI Actions for SPMT | |
on: [push, pull_request] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Initialize Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install Dependencies | |
run: | | |
pip install wheel==0.38.4 | |
pip install -r requirements.txt | |
pip install importlib-metadata==4.13.0 | |
pip install flake8==3.8.4 | |
pip install mypy==0.781 | |
pip install vulture==2.3 | |
- name: Lint | |
run: | | |
lint/lint-python.sh | |
lint/lint-python-mutable-default-parameters.sh | |
lint/lint-python-utf8-encoding.sh | |
build: | |
name: Build-${{ matrix.config.name }} | |
runs-on: ${{ matrix.config.os }} | |
needs: lint | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- name: Linux | |
os: ubuntu-20.04 | |
cachepath: ~/.cache/pip | |
packages: libusb-1.0-0-dev libudev-dev | |
- name: macOS | |
os: macos-11 | |
cachepath: ~/Library/Caches/pip | |
- name: Windows | |
os: windows-2019 | |
cachepath: ~\AppData\Local\pip\Cache | |
steps: | |
- name: Get Source | |
uses: actions/checkout@v4 | |
- name: Setup Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Setup pip cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ matrix.config.cachepath }} | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Install dependencies | |
run: | | |
if [[ ${{ matrix.config.os }} = ubuntu* ]]; then | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends --no-upgrade -qq ${{ matrix.config.packages }} | |
fi | |
pip install wheel==0.38.4 | |
pip install -r requirements.txt | |
pip install pyinstaller | |
- name: Build | |
run: | | |
pyinstaller SecurePivxMasternodeTool.spec |