[Bugfix][1856][zos_mount]Fails_using_persistat_option #1018
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: AC Changelog Lint | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
paths: | |
- 'changelogs/fragments/*' | |
branches: | |
- dev | |
- staging* | |
jobs: | |
lint: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.11 | |
- name: Set up venv | |
run: | | |
python -m pip install --upgrade pip | |
pip install virtualenv | |
mkdir venv | |
virtualenv venv/venv-2.16 | |
- name: Install dependencies | |
run: | | |
source venv/venv-2.16/bin/activate | |
pip install antsibull-changelog | |
- name: Run ac-changelog | |
run: | | |
source venv/venv-2.16/bin/activate | |
./ac --ac-changelog --command lint |