Skip to content

chore(release): 1.5.3 #49

chore(release): 1.5.3

chore(release): 1.5.3 #49

Workflow file for this run

name: test
on: [push]
jobs:
build:
name: test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.in
pip install -r dev-requirements.in
- name: Test with pytest
run: pytest tests/