Skip to content

renamed a file

renamed a file #177

Workflow file for this run

# SPDX-License-Identifier: MIT
name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: pytest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Set up dependencies
run: |
pip install -U pip && pip install pytest
- name: Run the tests
run: pytest -v