WIP: dummy change #9
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: Pull request workflows | |
on: | |
pull_request: | |
branches: "main" | |
types: ["opened", "synchronize"] | |
workflow_dispatch: | |
jobs: | |
flake8: | |
name: "Flake 8 style" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "📥 Fetching Repository Contents" | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: "💫 Install package dependencies" | |
run: python -m pip install flake8 | |
- name: "🤖 Check flake8 style" | |
run: flake8 -v --count | |
pytest: | |
name: "Run python tests" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "📥 Fetching Repository Contents" | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: "💫 Install package dependencies" | |
run: | | |
python -m pip install pytest | |
python -m pip install -r requirements.txt | |
- name: "🤖 Run pytest" | |
run: | | |
pytest test |