Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Update packet.py

Update packet.py #313

Workflow file for this run

name: lint
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --verbose"
src: "./growtopia"
- name: Set up CPython ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}