summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/digitalocean/.github/workflows/ansible-test-sanity.yml
blob: 25df124758b6f125a87c3f85417d4badf689e2a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: sanity

on:
  push:
    branches: [main]
  pull_request:
    types: [opened, synchronize, reopened]
  workflow_dispatch:

jobs:
  sanity:
    timeout-minutes: 30
    name: Sanity (Ⓐ$${{ matrix.ansible }})
    strategy:
      fail-fast: false
      matrix:
        ansible:
          - stable-2.12
          - stable-2.13
          - stable-2.14
    runs-on: ubuntu-22.04
    steps:
      - name: Perform testing
        uses: ansible-community/ansible-test-gh-action@release/v1
        with:
          ansible-core-version: ${{ matrix.ansible }}
          origin-python-version: 3.9
          target-python-version: 3.9
          testing-type: sanity