-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* issue #15 : test workflow * issue #15 : test workflow * issue #15 : test workflow * issue #15 : test workflow - debug pip packages * issue #15 : test workflow - debug pip packages * issue #15 : test workflow - use new action * issue #15 : test workflow - use new action * issue #15 : test workflow - fix ansible_python_interpreter * Revert "issue #15 : test workflow - use new action" This reverts commit b0e0caa. * Revert "issue #15 : test workflow - use new action" This reverts commit 7a27425. * issue #15 : test workflow - ok * issue #15 : test badge
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
name: ansible test | ||
on: | ||
pull_request: | ||
push: | ||
schedule: | ||
- cron: "45 5 * * 2" | ||
|
||
jobs: | ||
build: | ||
name: ansible test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: set up python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.11 | ||
- name: install requirements | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install ansible ansible-core lxml | ||
- name: run ansible test | ||
working-directory: ./test | ||
run: | | ||
ansible-playbook test.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters