Skip to content

chore(deps): update actions/checkout action to v4 #2

chore(deps): update actions/checkout action to v4

chore(deps): update actions/checkout action to v4 #2

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r test-requirements.txt
- name: Run unit tests
run: |
ansible-test units --requirements
- name: Run integration tests
run: |
ansible-test integration