Skip to content

build: set version to 0.1.3 #2

build: set version to 0.1.3

build: set version to 0.1.3 #2

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
# Checkout the code from the repository
- name: Checkout code
uses: actions/checkout@v3
# Set up Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
export PATH="$HOME/.local/bin:$PATH"
# Install dependencies
- name: Install dependencies
run: |
poetry install --with tests,dev
# Run tests
- name: Run tests
run: |
poetry run pytest .