Skip to content

242: Solve in Python 3 #5

242: Solve in Python 3

242: Solve in Python 3 #5

Workflow file for this run

---
on: [pull_request, push]
env:
PYTHON_VERSION: 3.12.4
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- run: printf "🎬 Triggered by ${{ github.event_name }}."
- run: printf "🐧 Running on ${{ runner.os }}."
- run: printf "⬇️ Cloning ${{ github.repository }}:${{ github.ref_name }}…"
- uses: actions/checkout@v4
- run: printf "🐍 Setting up Python ${{ env.PYTHON_VERSION }}…"
- uses: actions/setup-python@v5
with:
python-version: "${{ env.PYTHON_VERSION }}"
- run: printf "🔎 Linting Python code against PEP 8…"
- uses: py-actions/flake8@v2
...