mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-07 17:57:09 +00:00
28 lines
610 B
YAML
28 lines
610 B
YAML
name: Test setup-polaris
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build-int:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup polaris
|
|
uses: ./.github/actions/setup-polaris
|
|
with:
|
|
version: 4.2.0
|
|
- name: Use command
|
|
run: polaris version
|
|
|
|
build-ext:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup polaris
|
|
uses: fairwindsops/polaris/.github/actions/setup-polaris@master
|
|
with:
|
|
version: 4.2.0
|
|
- name: Use command
|
|
run: polaris version
|