Skip to content

build(deps-dev): bump vite from 4.4.11 to 4.5.2 #16

build(deps-dev): bump vite from 4.4.11 to 4.5.2

build(deps-dev): bump vite from 4.4.11 to 4.5.2 #16

Workflow file for this run

name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Setting Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pdm
pdm install
- name: Testing Code With pytest
run: pdm run pytest