Skip to content

connect item page to api with error handling #8

connect item page to api with error handling

connect item page to api with error handling #8

Workflow file for this run

name: unittest
on:
pull_request:
push:
branches: [main]
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Install dependencies
run: |
cd server
python -m pip install -r requirements.txt
- name: Run all unit tests
run: |
cd server
python -m unittest discover -v