mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2026-01-01 16:58:04 -06:00
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@v3
|
|
- name: Display info
|
|
run: |
|
|
pwd
|
|
tree -a -I '.git'
|
|
git status
|
|
- name: Run slow CI (emulated by a long sleep)
|
|
run: sleep 300 |