ci: Install 'python3-libdnf5' for TMT test plans #27
Workflow file for this run
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
name: Check spelling using codespell and spellintian | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: spelling | |
runs-on: ubuntu-24.04 | |
env: | |
CI_CONTAINER: libblockdev-ci-spelling | |
steps: | |
- name: Checkout libblockdev repository | |
uses: actions/checkout@v4 | |
with: | |
path: libblockdev | |
- name: Install codespell and lintian | |
run: | | |
sudo apt -qq update | |
sudo apt -y -qq install codespell lintian | |
- name: Get the storaged-project/ci repository | |
uses: actions/checkout@v4 | |
with: | |
repository: storaged-project/ci | |
path: ci | |
- name: Run the checks | |
run: | | |
python3 ../ci/run_spell_checks -p libblockdev -i gir | |
working-directory: ./libblockdev |