Switch from pyaes to pycryptodomex #308
Workflow file for this run
This file contains hidden or 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
name: Lint | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'AUTHORS' | |
jobs: | |
linters: | |
name: Linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
# remember to sync the ruff-check version number with pyproject.toml | |
- name: Run ruff check | |
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1 | |
with: | |
version: 0.11.5 | |
# remember to sync the ruff-check version number with pyproject.toml | |
- name: Run ruff format | |
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1 | |
with: | |
version: 0.11.5 | |
args: 'format --check' |