Skip to content

Update to Sentry 24.8.0 #9

Update to Sentry 24.8.0

Update to Sentry 24.8.0 #9

Workflow file for this run

---
name: Test ansible role
on:
pull_request:
push:
branches:
- master
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
scenario:
- debian-11
- debian-12
- ubuntu-2204
- ubuntu-2404
steps:
- uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Remove pre-installed ansible
run: sudo apt-get remove --purge -y ansible
- name: Install dependencies
run: pip install ansible ansible-lint docker molecule molecule-plugins[docker] pytest-testinfra black
- name: Display versions
run: |
python -c "import sys; print(sys.version)"
pip --version
ansible --version
molecule --version
- name: Lint code
run: |
ansible-lint
black --check .
env:
PY_COLORS: "1"
- name: Run Molecule
run: molecule --base-config molecule/shared/base.yml test --scenario-name ${{ matrix.scenario }}
env:
PY_COLORS: "1"