Skip to content

Updated package version in toml file #6

Updated package version in toml file

Updated package version in toml file #6

Workflow file for this run

name: CI
on: [pull_request]
jobs:
test:
runs-on: "ubuntu-latest"
steps:
- name: Checkout source
uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install Poetry
run: pip install poetry
- name: Configure Poetry
run: poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest