ansible-collection-infomaniak/.gitea/workflows/pull-request-open.yml

55 lines
1.3 KiB
YAML
Raw Normal View History

---
name: pull-requests-open
on:
pull_request:
types:
- opened
- edited
- synchronize
branches:
- main
- develop
jobs:
commit-history-check:
name: Check commit compliance
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Install commitizen
run: pip3 install commitizen
shell: bash
working-directory: ${{ gitea.workspace }}
- name: Verify commit message compliance
run: |
echo "cz check --rev-range origin/${{ gitea.event.pull_request.base.ref }}.."
cz check --rev-range origin/${{ gitea.event.pull_request.base.ref }}..
shell: bash
working-directory: ${{ gitea.workspace }}
run-tests:
name: Run tests
runs-on: ubuntu-latest
2024-09-14 11:15:07 +00:00
needs: commit-history-check
steps:
- name: Checkout
uses: actions/checkout@v4
2024-09-14 19:09:31 +00:00
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: "3.10"
2024-09-14 11:18:01 +00:00
2024-09-14 19:09:31 +00:00
- name: Run unit tests
uses: ansible-community/ansible-test-gh-action@release/v1
with:
ansible-core-version: stable-2.14
target-python-version: 3.10
testing-type: units