salt-bootstrap/.github/workflows/templates/pre-commit.yml
Pedro Algarvio 77daa3299d
Re-enable github actions workflow.
The main repo has them disabled
2020-02-24 12:06:26 +00:00

20 lines
507 B
YAML

generate-actions-workflow:
name: Generate The Actions Workflow
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install Pre-Commit
run: |
pip install -U pip
pip install pre-commit
pre-commit install
- name: Generate Workflow Actions
run: |
pre-commit run -av generate-actions-workflow