Skip to content

Commit

Permalink
Fix GHA typo
Browse files Browse the repository at this point in the history
  • Loading branch information
aptinis committed May 17, 2024
1 parent f25ad8f commit c27563e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,16 @@ jobs:
name: "Lint Code Base"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
- name: Checkout code
uses: actions/checkout@v4
with:
python-version: 3.8
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
Expand All @@ -34,9 +36,9 @@ jobs:
- name: Run GitHub super-linter
uses: github/super-linter/slim@v6
env:
DEFAULT_BRANCH: master
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DEFAULT_BRANCH: master
VALIDATE_ALL_CODEBASE: true
VALIDATE_YAML: true
VALIDATE_JSON: true
Expand Down

0 comments on commit c27563e

Please sign in to comment.