This repository was archived by the owner on Oct 18, 2024. It is now read-only.
Upgrade to bswck/skeleton@0.0.2rc-87-g35656e9 #57
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
# This file was generated from bswck/skeleton@0.0.2rc-87-g35656e9. | |
# Instead of changing this particular file, you might want to alter the template: | |
# https://github.com/bswck/skeleton/tree/0.0.2rc-87-g35656e9/project/.github/workflows/lint.yml.jinja | |
# IMPORTANT! | |
# Pinned versions of actions and Poetry are managed in a different repository. | |
# Do not submit PRs to this file unless for this repo specifically. | |
# To change this workflow globally, submit a PR to https://github.com/bswck/skeleton. | |
name: "Lint" | |
on: ["push"] | |
jobs: | |
lint: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Set up Python 3.8" | |
uses: "actions/setup-python@v5" | |
with: | |
python-version: "3.8" | |
- name: "Install Ruff" | |
run: "pip install ruff" | |
- name: "Analyze the code with Ruff" | |
run: "ruff ." |