Skip to content

feat(env): update input api for env #1724

feat(env): update input api for env

feat(env): update input api for env #1724

Workflow file for this run

name: isort
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
isort:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install isort==5.13.2
- name: run isort
run: |
isort . --check-only