Skip to content

build(deps): bump @babel/traverse from 7.18.11 to 7.24.5 in /frontend #1723

build(deps): bump @babel/traverse from 7.18.11 to 7.24.5 in /frontend

build(deps): bump @babel/traverse from 7.18.11 to 7.24.5 in /frontend #1723

Workflow file for this run

name: Test Python code
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pytest:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: '3.10'
steps:
- name: Checkout the project
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: ${{ env.PYTHON }}
cache: 'pip'
- name: Install Requirements
run: pip install -r requirements.txt
- name: Install the package that is required for testing and coverage calculation
run: pip install coverage
- name: Generate Report
run: coverage run -m unittest
- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v2