Changed get_obs() to keep two screenshots at most #1487
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Formatting | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
format: | |
name: Run Ruff format checker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Ruff | |
run: pip install ruff==0.6.8 | |
- name: Run ruff | |
run: ruff format --check . |