Skip to content

added more FW container formats #24

added more FW container formats

added more FW container formats #24

Workflow file for this run

name: Run Tests
on: [pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
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 deps
run: |
python3 -m pip install -U pip
python3 -m pip install .
python3 -m pip install -r requirements-dev.txt
- name: run pytest
run: pytest