mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2025-12-31 00:59:51 -06:00
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yogesh Choudhary Paliyal <paliyalyogesh@gmail.com>
18 lines
344 B
YAML
18 lines
344 B
YAML
name: Validate code in the merge queue
|
|
|
|
on:
|
|
merge_group:
|
|
|
|
jobs:
|
|
validate-pr:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Display info
|
|
run: |
|
|
pwd
|
|
tree -a -I '.git'
|
|
git status
|
|
- name: Run slow CI (emulated by a long sleep)
|
|
run: sleep 300 |