Skip to content

Commit

Permalink
workflows: Use branch head to run tests
Browse files Browse the repository at this point in the history
Signed-off-by: Rafael Guterres Jeffman <[email protected]>
  • Loading branch information
rjeffman committed Jan 14, 2025
1 parent b76534e commit 711859f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_ansible.yml
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
Expand All @@ -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 }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 711859f

Please sign in to comment.