mirror of
https://github.com/willshersystems/ansible-sshd
synced 2024-11-14 15:30:18 +01:00
54466f823e
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
478 B
YAML
18 lines
478 B
YAML
name: Run Ansible Check on Alpine
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
alpine-latest:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Important: This sets up your GITHUB_WORKSPACE environment variable
|
|
- name: checkout PR
|
|
uses: actions/checkout@v3
|
|
|
|
- name: ansible check with alpine:latest
|
|
uses: roles-ansible/check-ansible-alpine-latest-action@master
|
|
with:
|
|
group: local
|
|
hosts: localhost
|
|
targets: "tests/tests_*.yml"
|