Skip to content

update remote storage #11

update remote storage

update remote storage #11

Workflow file for this run

name: "Run code check"
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- name: Install dependencies
run: |
pip install ruff
pip install mypy
- name: Lint with Ruff
run: ruff --output-format=github .