Use library functions for getting leapp packages #1453
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: Codespell | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
codespell: | |
name: Check for spelling errors | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: codespell-project/actions-codespell@master | |
with: | |
ignore_words_list: ro,fo,couldn,repositor | |
skip: "./repos/system_upgrade/common/actors/storagescanner/tests/files/mounts,\ | |
./repos/system_upgrade/el7toel8/actors/networkmanagerreadconfig/tests/files/nm_cfg_file_error,\ | |
./repos/system_upgrade/el8toel9/actors/xorgdrvfact/tests/files/journalctl-xorg-intel,\ | |
./repos/system_upgrade/el8toel9/actors/xorgdrvfact/tests/files/journalctl-xorg-qxl,\ | |
./repos/system_upgrade/el8toel9/actors/xorgdrvfact/tests/files/journalctl-xorg-without-qxl,\ | |
./repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_s390x,\ | |
./etc/leapp/files/device_driver_deprecation_data.json,\ | |
./etc/leapp/files/pes-events.json,\ | |
./etc/leapp/files/repomap.json,\ | |
./repos/system_upgrade/common/files/prod-certs" |