Skip to content

Update item_names.json #28

Update item_names.json

Update item_names.json #28

Workflow file for this run

name: Format files
on:
push:
paths:
- "app/data/mappings/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install orjson black isort
- name: Format files
run: |
bash scripts/format.ps1