-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workflows: Use branch head to run tests
Signed-off-by: Rafael Guterres Jeffman <[email protected]>
- Loading branch information
Showing
2 changed files
with
7 additions
and
5 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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
--- | ||
name: test-freeipa-matrix | ||
run-name: Test Distro Matrix | ||
name: Test Distro Matrix | ||
on: | ||
- push | ||
- pull_request | ||
|
@@ -20,7 +19,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Run FreeIPA tests | ||
uses: rjeffman/[email protected] | ||
# uses: rjeffman/FreeIPA-Cluster-Test@<version|main> | ||
uses: ./ | ||
with: | ||
cluster_configuration: tests/environments/server_only.yaml | ||
distro: ${{ matrix.test_distro }} | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,8 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: Run FreeIPA tests | ||
uses: rjeffman/[email protected] | ||
# uses: rjeffman/FreeIPA-Cluster-Test@<version|main> | ||
uses: ./ | ||
with: | ||
cluster_configuration: tests/environments/server_only.yaml | ||
shutdown: false | ||
|
@@ -27,7 +28,8 @@ jobs: | |
pytest | ||
- name: Shutdown environment | ||
uses: rjeffman/[email protected] | ||
# uses: rjeffman/FreeIPA-Cluster-Test@<version|main> | ||
uses: ./ | ||
with: | ||
cluster_configuration: tests/environments/server_only.yaml | ||
shutdown: true |