Skip to content

User header styles when needed #134

User header styles when needed

User header styles when needed #134

Workflow file for this run

name: All tests
on:
push:
branches: [ "main", "v2.3" ]
pull_request:
branches: [ "main", "v2.3" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get -y install libsnappy-dev
pip install poetry
poetry install
- name: Test with pytest
run: |
poetry run pytest