From 3daf3a8d265e08506557671cb144757677ff19bc Mon Sep 17 00:00:00 2001 From: borgified Date: Sat, 5 Sep 2020 09:28:15 -0700 Subject: [PATCH] Improve url checker (#3702) * improvements to check_urls make check have a more descriptive name produce output file instead * upload artifacts * a * change file to trigger test * put things back --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7ca7b06d..159f7e6d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,4 +1,4 @@ -name: check_urls +name: Check URLs from changed files on: [push, pull_request] jobs: job: @@ -13,4 +13,7 @@ jobs: with: ruby-version: 2.4.1 - run: gem install awesome_bot - - run: for i in ${{ steps.file_changes.outputs.files_modified }}; do echo; echo "processing $i"; awesome_bot $i --allow-redirect --allow-dupe --skip-save-results --allow-ssl; done + - run: for i in ${{ steps.file_changes.outputs.files_modified }}; do echo; echo "processing $i"; awesome_bot $i --allow-redirect --allow-dupe --allow-ssl || true; done + - uses: actions/upload-artifact@v2 + with: + path: ${{ github.workspace }}/*.json