Skip to content

Merge pull request #48 from bit-bots/readme_installation #12

Merge pull request #48 from bit-bots/readme_installation

Merge pull request #48 from bit-bots/readme_installation #12

Workflow file for this run

name: Run pytest unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unit-tests:
strategy:
matrix:
os: [ubuntu-latest, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup repository
uses: ./.github/actions/setup-repo
- name: Run pytest unit tests
run: poetry run pytest tests