Update README.md #2
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@bf2dfcf. | |
# Instead of changing this particular file, you might want to alter the template: | |
# https://github.com/bswck/skeleton/tree/bf2dfcf/project/.github/workflows/lint.yml.jinja | |
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@v4" | |
with: | |
python-version: "3.8" | |
- name: "Install Ruff" | |
run: | | |
pip install ruff | |
- name: "Analyze the code with Ruff" | |
run: "ruff ." |