Added Automation Mesh Demo Role #82
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Validation CI | |
"on": | |
push: | |
branches: | |
- main | |
- actions | |
pull_request: | |
types: | |
- assigned | |
- opened | |
- edited | |
- reopened | |
- synchronize | |
- ready_for_review | |
- review_requested | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pre-commit | |
run: sudo pip3 install pre-commit | |
- name: Run pre-commit tests | |
run: pre-commit run |