Skip to content

Merge pull request #94 from bowen-xu/KanrenReasoner #14

Merge pull request #94 from bowen-xu/KanrenReasoner

Merge pull request #94 from bowen-xu/KanrenReasoner #14

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application - DEV
on:
push:
branches: [ "dev" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9.x
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with unittest
continue-on-error: true
run: |
python -m unittest discover Tests/test_NAL/ -p "test_*.py" -v |& tee output-dev.txt
- uses: actions/upload-artifact@v4
with:
name: test-report
path: ./output-dev.txt