mirror of
https://github.com/cnrancher/kube-explorer.git
synced 2026-05-14 19:54:47 +00:00
22 lines
416 B
YAML
22 lines
416 B
YAML
name: pull request
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
jobs:
|
|
pr-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Commitsar check
|
|
uses: aevea/commitsar@v0.20.2
|
|
- name: Build to test
|
|
env:
|
|
SKIP_COMPRESS: "true"
|
|
run: make ci
|