From 686274db28cfc1cdb7a5184f39689630d18ea82b Mon Sep 17 00:00:00 2001 From: Dafydd Jones Date: Sun, 6 Sep 2020 18:19:50 +0100 Subject: [PATCH] ci(actions): add weekly full test run (or manual trigger) --- .github/workflows/full_run.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/full_run.yml diff --git a/.github/workflows/full_run.yml b/.github/workflows/full_run.yml new file mode 100644 index 00000000..ea73585a --- /dev/null +++ b/.github/workflows/full_run.yml @@ -0,0 +1,23 @@ +name: full_run + +on: + # Allow manual trigger + workflow_dispatch: + schedule: + # At 17:03 on Saturday (on main SaltStack repo) + - cron: '3 17 * * 6' + +jobs: + pre-commit: + name: Check URLs + if: github.repository == 'saltstack/salt-winrepo-ng' || github.event_name == 'workflow_dispatch' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + - run: | + sudo apt update + sudo apt install -y libcurl4-openssl-dev + - uses: pre-commit/action@v2.0.0 + with: + extra_args: --verbose --all-files