Skip to content

Commit

Permalink
ci(actions): add weekly full test run (or manual trigger)
Browse files Browse the repository at this point in the history
  • Loading branch information
dafyddj committed Sep 18, 2020
1 parent 366d0b8 commit 686274d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/full_run.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
with:
extra_args: --verbose --all-files

0 comments on commit 686274d

Please sign in to comment.