Skip to content

Add cloud support (#162) #25

Add cloud support (#162)

Add cloud support (#162) #25

Workflow file for this run

name: Lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install autoflake black
- name: Checking for unused imports
run: |
autoflake -c -r .
- name: Checking code style
run: |
black --check .