Skip to content

feat: pygame_gui with StateStack (#5) #37

feat: pygame_gui with StateStack (#5)

feat: pygame_gui with StateStack (#5) #37

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