add param to trust workspace #860
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: windup_ide_tests | |
on: [push, pull_request] | |
jobs: | |
pre-commit: | |
name: Pre-Commit Checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout to master | |
uses: actions/checkout@v2 | |
- name: Setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
architecture: 'x64' | |
- name: Pre-Commit Checks | |
run: | | |
python -m pip install pre-commit | |
pre-commit run -a | |
- name: Analysis (git diff) | |
if: failure() | |
run: git diff |