Skip to content

Improve clean description #9

Improve clean description

Improve clean description #9

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: curl -sSf https://rye.astral.sh/get | RYE_INSTALL_OPTION="--yes" bash
- run: echo "$HOME/.rye/shims" >> $GITHUB_PATH
- run: rye config --set-bool behavior.use-uv=true
- run: rye sync
- run: rye lock --update awscli
- run: rye run ruff check --output-format=github .
- run: rye run aws configure set plugins.aws_cli_plugin aws_cli_plugin
- name: Build specs
run: rye run aws
continue-on-error: true