Skip to content

Merge pull request #39 from Knox-AAU/concept-linking-2 #60

Merge pull request #39 from Knox-AAU/concept-linking-2

Merge pull request #39 from Knox-AAU/concept-linking-2 #60

Workflow file for this run

name: test
on:
push:
branches: ["**"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup python
uses: actions/setup-python@v3
with:
python-version: 3.11.0
- name: Install dependencies
run: |
echo "Installing dependencies"
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: |
echo "Testing..."
python -m unittest -b || exit 1