Skip to content

Merge pull request #251 from UAlbanyArchives/bad_rtf #954

Merge pull request #251 from UAlbanyArchives/bad_rtf

Merge pull request #251 from UAlbanyArchives/bad_rtf #954

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
lint:
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 OS dependencies
run: |
sudo timedatectl set-timezone America/New_York
sudo apt-get update
sudo apt-get install libgtk-3-dev
- name: Install Python dependencies
run: |
pip install attrdict3
pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-22.04 wxPython
pip install .
pip install libpff-python==20211114
- name: Test with pytest
run: |
pytest -vv