Skip to content

v0.1.0

v0.1.0 #82

Workflow file for this run

name: Bunruija test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
pip install poetry
- name: Install bunruija and its dependencies
run: |
poetry install --no-interaction
- name: Run unit test
run: |
poetry run pytest tests