Skip to content

CI + CD For Rally

CI + CD For Rally #2

Workflow file for this run

name: Rabbit Consumer
on:
push:
branches:
- master
pull_request:
paths:
- ".github/workflows/rally.yaml"
- "Openstact-Rally-Tester/**"
jobs:
test_and_lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
- name: Install dependencies
run: |
python -m pip install pylint
- name: Analyse with pylint
run: |
cd OpenStack-Rally-Tester && pylint .
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
with:
scandir: "./OpenStack-Rally-Tester"