Skip to content

chore: trigger pipeline with a push on main & remove "versioning system" #22

chore: trigger pipeline with a push on main & remove "versioning system"

chore: trigger pipeline with a push on main & remove "versioning system" #22

Workflow file for this run

name: Run tests.
on:
push:
branches:
- main
paths-ignore:
- "README.md"
- ".gitignore"
- ".assets/**"
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
- name: Run Tests
run: |
poetry run pytest