Extend getrolename2 #193
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: tmt Lint | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
merge_group: | |
branches: | |
- main | |
types: | |
- checks_requested | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
tmt_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
path: ${{ github.event.repository.name }} | |
- name: Run tmt Lint | |
run: > | |
podman run -it | |
--volume ./${{ github.event.repository.name }}:/${{ github.event.repository.name }}:Z | |
--workdir /${{ github.event.repository.name }} | |
--rm quay.io/teemtee/tmt | |
tmt lint |