Skip to content

fix checkout of master branch explicitly defined #1391

fix checkout of master branch explicitly defined

fix checkout of master branch explicitly defined #1391

Workflow file for this run

---
name: isort
on: push # yamllint disable-line rule:truthy
jobs:
isort:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip'
- run: pip install 'isort>=5.0.1'
- uses: akaihola/lint-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
isort: true
continue_on_error: false