-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simple but useful action to run compare.py on each commit (#67)
* Create compare.yml pipeline * Create compare-requirements.txt
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Run compare.py on each commit | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' # This will trigger the workflow on any branch | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository content | ||
uses: actions/checkout@v2 # This action checks-out your repository under $GITHUB_WORKSPACE | ||
|
||
- name: Set up Python environment | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' # This will retrieve the latest Python version | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r Tools/compare-requirements.txt # If you have any dependencies | ||
- name: Run Python script | ||
run: python Tools/compare.py # Replace with your script's path |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
prettytable==3.10.0 | ||
wcwidth==0.2.13 |