Fix output gathering from console and added end_check option (#14) #9
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: Tests | |
on: | |
push | |
jobs: | |
validate_application_code: | |
name: Validate application code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the current repo | |
uses: actions/checkout@v4 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Install snek-sploit | |
run: poetry install | |
- name: Run Black | |
run: poetry run black --check --diff snek_sploit/ |