Skip to content

fix: update wget installation command for Windows in GitHub Actions w… #12

fix: update wget installation command for Windows in GitHub Actions w…

fix: update wget installation command for Windows in GitHub Actions w… #12

Workflow file for this run

# This Action uses minimal steps to run in ~5 seconds to rapidly:
# look for typos in the codebase using codespell, and
# lint Python code using ruff and provide intuitive GitHub Annotations to contributors.
name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
codespell_and_ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
- uses: astral-sh/ruff-action@v3
- run: ruff format --diff