Update workflows

This commit is contained in:
Yogesh Choudhary Paliyal
2024-03-02 12:48:30 +05:30
committed by GitHub
parent bb1f06a3ac
commit 193494f53c

18
.github/workflows/merge-queue.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Validate code in the merge queue
on:
merge_group:
jobs:
validate-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Display info
run: |
pwd
tree -a -I '.git'
git status
- name: Run slow CI (emulated by a long sleep)
run: sleep 300