Upgrade: Bump aiohttp from 3.7.4.post0 to 3.8.5 in /regression_runner #30
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: Testing | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
codeql: | |
name: Security and Quality | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies | |
run: python -m pip install -e . | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
with: | |
languages: python | |
queries: security-and-quality | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 | |
flake8: | |
name: Flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Flake8 | |
uses: TrueBrain/actions-flake8@v2 | |
with: | |
path: examples openttd_helpers regression_runner | |
black: | |
name: Black | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Black | |
run: | | |
python -m pip install --upgrade pip | |
pip install black | |
black -l 120 --check examples openttd_helpers regression_runner | |
regression: | |
name: Regression | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Set up packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e . | |
pip install -r regression_runner/requirements.txt | |
- name: Regression | |
run: | | |
make regression | |
check_annotations: | |
name: Check Annotations | |
needs: | |
- flake8 | |
- black | |
- regression | |
# not codeql, as that reports its own status | |
if: always() && github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check annotations | |
uses: OpenTTD/actions/annotation-check@v3 |