2020-10-23 16:14:41 +02:00
|
|
|
name: Run tests on Fedora latest
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-04-07 20:12:03 +02:00
|
|
|
# Important: This sets up your GITHUB_WORKSPACE environment variable
|
|
|
|
- name: checkout PR
|
2023-09-05 14:23:27 +02:00
|
|
|
uses: actions/checkout@v4
|
2020-10-23 16:14:41 +02:00
|
|
|
|
2021-04-07 20:12:03 +02:00
|
|
|
- name: ansible check with fedora:latest
|
2022-05-19 09:49:42 +02:00
|
|
|
uses: roles-ansible/check-ansible-fedora-latest-action@master
|
2021-04-07 20:12:03 +02:00
|
|
|
with:
|
|
|
|
group: local
|
|
|
|
hosts: localhost
|
2021-11-10 09:50:43 +01:00
|
|
|
targets: "tests/tests_*.yml"
|