Skip to content

fix: remov loop from event #1

fix: remov loop from event

fix: remov loop from event #1

Workflow file for this run

name: "Build and Tests"
on:
push:
branches:
- "*"
# tag is already build in branch
tags-ignore:
- "*"
pull_request:
branches: ["master"]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install
run: |
python -m pip install --upgrade pip
python -m pip install ".[tests]"
- name: Run tests
run: |
pytest