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
wily: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2-beta | |
with: | |
fetch-depth: 0 | |
- uses: actions/checkout@v2-beta | |
with: | |
ref: refs/heads/master | |
clean: false | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: "3.8" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install wily | |
- name: Build wily | |
run: | | |
wily build generator/ test/ . | |
wily diff generator/ -r master | |
- name: Show wily report | |
run: | | |
wily report generator/generator.py | |
wily report test/test_generator.py | |
- name: Show wily rank | |
run: | | |
wily rank generator/ | |
wily rank test/ | |
wily rank . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment