Skip to content

fix: remove download buttons from UI (#446) #312

fix: remove download buttons from UI (#446)

fix: remove download buttons from UI (#446) #312

Workflow file for this run

name: sregistry-ci
on:
push:
branches:
- master
pull_request:
branches_ignore: []
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check for typos in docs
uses: crate-ci/typos@7ad296c72fa8265059cc03d1eda562fbdfcd6df2 # v1.9.0
with:
files: ./docs/_docs ./docs/_posts ./README.md
- name: Setup black linter
run: conda create --quiet --name black black
- name: Lint and format Python code
run: |
export PATH="/usr/share/miniconda/bin:$PATH"
source activate black
pip install -r .github/dev-requirements.txt
pre-commit run --all-files