Skip to content

chore(deps): bump streamlit from 1.38.0 to 1.40.2 in the actions-minor group across 1 directory #6

chore(deps): bump streamlit from 1.38.0 to 1.40.2 in the actions-minor group across 1 directory

chore(deps): bump streamlit from 1.38.0 to 1.40.2 in the actions-minor group across 1 directory #6

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
explorer-ci:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Check code formatting with isort
run: |
isort --profile=black --check-only .
- name: Check code formatting with black
run: |
black --check .