This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
Fix outbound transit after acapy upgrade #57
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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
name: Code Quality Check | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
env: | |
FLAKE8_VERSION: 3.9.2 | |
BLACK_VERSION: 22.3.0 | |
jobs: | |
format: | |
name: Format and Lint Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Cache python environment | |
id: cache-env | |
uses: actions/cache@v2 | |
with: | |
path: env | |
key: ${{ runner.os }}-format-lint-${{ env.FLAKE8_VERSION }}-${{ env.BLACK_VERSION }}-${{ hashFiles('.github/workflows/code-quality-check.yml') }} | |
- name: create virtual environment | |
if: steps.cache-env.outputs.cache-hit != 'true' | |
run: | | |
python -m venv env | |
- name: Install dependencies | |
if: steps.cache-env.outputs.cache-hit != 'true' | |
run: | | |
env/bin/python -m pip install black==${{ env.BLACK_VERSION }} | |
env/bin/python -m pip install flake8==${{ env.FLAKE8_VERSION }} | |
- name: Black Format Check | |
run: | | |
env/bin/python -m black --check redis_queue redis_relay redis_deliverer status_endpoint int/tests | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
env/bin/python -m flake8 . --exclude=env --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
env/bin/python -m flake8 . --exclude=env --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics |