Bump actions/setup-python from 4 to 5 #93
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: "Push actions" | |
on: | |
push: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
name: Check push | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Install dependencies | |
run: python -m pip install setuptools wheel black pytest | |
- run: python3 -m black . | |
- run: python3 -m pytest |