Skip to content

Adapt branch for ci

Adapt branch for ci #1

Workflow file for this run

name: test
on:
push:
branches:
- '**'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: x64
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Run Python Tests
run: python -m unittest discover