Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Bump vite from 5.0.5 to 5.0.12 in /frontend #131

Bump vite from 5.0.5 to 5.0.12 in /frontend

Bump vite from 5.0.5 to 5.0.12 in /frontend #131

Workflow file for this run

name: Run Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
cd backend
poetry install
- name: Run tests
run: |
cd backend
poetry run python -m unittest