added get_plugin_details_text_from_file, and changed name of get_plug… #941
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 |