mirror of https://github.com/rancher/hull.git
24 lines
395 B
YAML
24 lines
395 B
YAML
name: CI-pullrequest
|
|
|
|
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- 'scripts/**'
|
|
- '*.md'
|
|
- '*.dapper'
|
|
- '.gitignore'
|
|
- 'CODEOWNERS'
|
|
- 'LICENSE'
|
|
- 'Makefile'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: rancher/dapper:v0.5.4
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Run CI
|
|
run: dapper ci
|