Fixed a memory leak #332
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Python package | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, ubuntu-22.04] | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Package | |
run: | | |
python -m pip install virtualenv | |
make devenv | |
- name: Check styles | |
run: | | |
make check | |
- name: Install Libreoffice | |
run: | | |
sudo apt-get update | |
sudo apt-get install libreoffice | |
- name: Test with pytest | |
run: | | |
source ve/bin/activate | |
make test |