Skip to content

Merge pull request #176 from rundeck-plugins/RUN-2676 #174

Merge pull request #176 from rundeck-plugins/RUN-2676

Merge pull request #176 from rundeck-plugins/RUN-2676 #174

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.x' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
check-latest: true
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: |
python -m tox -c tox.ini