Add image details and platform details in versions #296
Workflow file for this run
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: Test Python cleanliness | |
on: | |
pull_request: | |
push: | |
jobs: | |
python-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade poetry | |
poetry config virtualenvs.create false | |
poetry install | |
- name: Run tests | |
run: | | |
./.hooks/pre-push |