From 38b5cd8193d0bef48becce317435b4fc150d3ff4 Mon Sep 17 00:00:00 2001 From: Robert Brennan Date: Tue, 9 Feb 2021 08:40:35 -0500 Subject: [PATCH] enable action (#495) * enable action * Update .github/workflows/test_setup.yml Co-authored-by: Dominik Meyer Co-authored-by: Dominik Meyer --- .github/workflows/test_setup.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/test_setup.yml b/.github/workflows/test_setup.yml index 7d0e083b..f595918b 100644 --- a/.github/workflows/test_setup.yml +++ b/.github/workflows/test_setup.yml @@ -2,6 +2,7 @@ name: Test setup-polaris on: pull_request: branches: [ master ] + jobs: build-int: runs-on: ubuntu-latest @@ -13,14 +14,14 @@ jobs: version: 3.0.3 - name: Use command run: polaris version -# @rbren this will only work once merged to your repo -# build-ext: -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v2 -# - name: Setup polaris -# uses: fairwindsops/polaris@master -# with: -# version: 3.0.3 -# - 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: 3.0.3 + - name: Use command + run: polaris version