mirror of
https://github.com/rancher/norman.git
synced 2025-04-27 11:11:21 +00:00
23 lines
449 B
YAML
23 lines
449 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request: {}
|
|
push:
|
|
branches:
|
|
- master
|
|
- release/*
|
|
|
|
jobs:
|
|
ci:
|
|
runs-on : ubuntu-latest
|
|
container:
|
|
image: rancher/dapper:v0.6.0
|
|
steps:
|
|
- name: Add Git
|
|
run: apk add -U git
|
|
- name: Checkout code
|
|
# https://github.com/actions/checkout/releases/tag/v4.1.1
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- name : Run dapper ci
|
|
run: dapper ci
|