Skip to content

Askar's directional button first working implementation #14

Askar's directional button first working implementation

Askar's directional button first working implementation #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20.x"
- run: |
cd js
npm update
npm ci
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: |
pip install -e '.[dev]'
- name: Run tests
run: pytest . --color=yes