1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_packages.git synced 2024-08-16 10:19:51 +02:00

Merge pull request #10 from roles-ansible/bullseye

create check for debian bullseye
This commit is contained in:
L3D 2021-09-01 00:13:53 +02:00 committed by GitHub
commit 2a6e68722b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 2 deletions

View file

@ -0,0 +1,18 @@
---
name: Ansible check debian:bullseye
# yamllint disable-line rule:truthy
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ansible check with debian:bullseye
uses: roles-ansible/check-ansible-debian-bullseye-action@main
with:
targets: "./"

View file

@ -9,7 +9,7 @@
- ansible_distribution != 'CentOS' - ansible_distribution != 'CentOS'
- ansible_distribution != 'RedHat' - ansible_distribution != 'RedHat'
- ansible_distribution != 'Archlinux' - ansible_distribution != 'Archlinux'
ignore_errors: true failed_when: false
- name: vim is our editor - name: vim is our editor
become: true become: true
@ -21,4 +21,4 @@
- ansible_distribution == 'CentOS' - ansible_distribution == 'CentOS'
- ansible_distribution == 'RedHat' - ansible_distribution == 'RedHat'
- ansible_distribution == 'Archlinux' - ansible_distribution == 'Archlinux'
ignore_errors: true failed_when: false