chore: Bump pylon service version in the validator runner #4771
Workflow file for this run
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: Run Miner QA | |
| on: | |
| push: | |
| branches: [master, main] | |
| pull_request: | |
| env: | |
| PYTHON_DEFAULT_VERSION: "3.11" | |
| jobs: | |
| linter: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./miner | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ env.PYTHON_DEFAULT_VERSION }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.PYTHON_DEFAULT_VERSION }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: "0.8.x" | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv tool install nox | |
| - name: Create dotenv file | |
| run: cp ./envs/dev/.env.template .env | |
| - name: Run linters check | |
| run: nox -vs lint | |
| type_check: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./miner | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ env.PYTHON_DEFAULT_VERSION }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.PYTHON_DEFAULT_VERSION }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: "0.8.x" | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv tool install nox | |
| - name: Create dotenv file | |
| run: cp ./envs/dev/.env.template .env | |
| - name: Run mypy | |
| run: nox -vs type_check | |
| test: | |
| timeout-minutes: 10 | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: ./miner | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ env.PYTHON_DEFAULT_VERSION }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.PYTHON_DEFAULT_VERSION }} | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| version: "0.8.x" | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv tool install nox | |
| - name: Prepare environment | |
| run: ./setup-dev.sh | |
| - name: Run dockerized services | |
| run: docker compose up -d --wait | |
| - name: Run unit tests | |
| run: nox -vs test | |
| - name: Stop dockerized services | |
| if: success() || failure() | |
| run: docker compose down -v |