[Chore] update fastapi version to fix broken anyio #125
Workflow file for this run
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: Linters | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
PYTHON_VERSION: '3.10' | |
jobs: | |
isort: | |
name: isort | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Set package version | |
run: | | |
isort_version="$(grep '^isort' pyproject.toml | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')" | |
echo "isort_version=$isort_version" >> "$GITHUB_ENV" | |
- name: Install package | |
run: python -m pip install isort==${{ env.isort_version }} | |
- name: Set changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v35 | |
with: | |
files: | | |
*.py | |
**/*.py | |
- name: Check isort | |
run: | | |
if [[ -n "${{ steps.changed-files.outputs.all_changed_files }}" ]]; then | |
echo "${{ steps.changed-files.outputs.all_changed_files }}" | xargs isort --check --diff && | |
echo "Isort was succeeded." || | |
exit 1 | |
else | |
echo "0 Python files changed." | |
fi | |
black: | |
name: black | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Set package version | |
run: | | |
black_version="$(grep '^black' pyproject.toml | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' | head -n 1)" | |
echo "black_version=$black_version" >> "$GITHUB_ENV" | |
- name: Install package | |
run: python -m pip install black==${{ env.black_version }} | |
- name: Set changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v35 | |
with: | |
files: | | |
*.py | |
**/*.py | |
- name: Check black | |
run: | | |
if [[ -n "${{ steps.changed-files.outputs.all_changed_files }}" ]]; then | |
echo "${{ steps.changed-files.outputs.all_changed_files }}" | xargs black --check --diff && | |
echo "Black was succeeded." || | |
exit 1 | |
else | |
echo "0 Python files changed." | |
fi |