Skip to content

Add data 2024.11.10 (mv3-chrome chrome 6.2K) #1278

Add data 2024.11.10 (mv3-chrome chrome 6.2K)

Add data 2024.11.10 (mv3-chrome chrome 6.2K) #1278

Workflow file for this run

name: Static analysis checks and unit tests
on: [pull_request, push, workflow_dispatch]
jobs:
lint_and_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run static analysis
run: prospector -X
- name: Run unit tests
run: pytest