Skip to content

updated readme

updated readme #16

Workflow file for this run

name: test
on: [push]
jobs:
lint:
name: Test (Python ${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- run: |
python -m ss14_tiled.test
- run: |
TMP=$(mktemp -d)
git clone https://github.com/space-wizards/space-station-14 $TMP
python -m ss14_tiled $TMP