From 3ef8c4e26913910aa9f43b4aef322cdb86c30bf6 Mon Sep 17 00:00:00 2001 From: yiitozer Date: Tue, 12 Mar 2024 11:14:15 +0100 Subject: [PATCH] add workflows for unit tests --- .github/workflows/test_conda.yml | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/test_conda.yml diff --git a/.github/workflows/test_conda.yml b/.github/workflows/test_conda.yml new file mode 100644 index 0000000..83663bf --- /dev/null +++ b/.github/workflows/test_conda.yml @@ -0,0 +1,39 @@ +name: Python Package using Conda + +on: + push: + branches: + - unit_tests + pull_request: + branches: + - unit_tests +jobs: + build-linux: + runs-on: ubuntu-latest + strategy: + max-parallel: 5 + + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.11 + uses: actions/setup-python@v2 + with: + python-version: 3.11 + - name: Add conda to system path + run: | + # $CONDA is an environment variable pointing to the root of the miniconda directory + echo $CONDA/bin >> $GITHUB_PATH + - name: Install dependencies + run: | + conda install -c conda-forge libsndfile python=3.11 + python -m pip install -e .['tests'] + - name: Lint with flake8 + run: | + conda install flake8 + # stop the build if there are Python syntax errors or undefined names + flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics + # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide + flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + - name: Test with pytest + run: | + pytest \ No newline at end of file