Skip to content

Instantly share code, notes, and snippets.

@JoaquinAcuna97
Created August 6, 2021 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JoaquinAcuna97/144467c92b63ea32cc4dacfff35fd33c to your computer and use it in GitHub Desktop.
Save JoaquinAcuna97/144467c92b63ea32cc4dacfff35fd33c to your computer and use it in GitHub Desktop.
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