From 19b3d4d5db3130b63c2a020ef29e923e29677195 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 21 Oct 2023 12:02:16 -0400 Subject: [PATCH] use setup python action --- .forgejo/workflows/lint.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/lint.yaml b/.forgejo/workflows/lint.yaml index 9167e79..307a09c 100644 --- a/.forgejo/workflows/lint.yaml +++ b/.forgejo/workflows/lint.yaml @@ -7,8 +7,11 @@ jobs: - name: Checkout Repository uses: actions/checkout@v3 + - name: Setup Python + uses: actions/setup-python@v3 + - name: Install Linter - run: python3 -m pip install yamllint + run: pip install yamllint - name: Lint YAML id: yaml-lint