Skip to content

feat(07): in-game items menu (#7) #54

feat(07): in-game items menu (#7)

feat(07): in-game items menu (#7) #54

Workflow file for this run

name: Unittest
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Lint with Ruff
run: |
pip install ruff
ruff --output-format=github .
continue-on-error: false
- name: Testing the code with unittest
run: |
python -m unittest discover -s tests
continue-on-error: true