From 605ed94ba2cb303646b1355a55b6990fc353b545 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 21 Nov 2021 22:47:10 +0100 Subject: [PATCH] ci: use matrix for tests Signed-off-by: Jens Langhammer --- .github/workflows/ci-main.yml | 91 ++++++----------------------------- Makefile | 18 +++++++ scripts/ci_prepare.sh | 1 + 3 files changed, 33 insertions(+), 77 deletions(-) diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index fe742131d..d7b02c2ab 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -18,13 +18,24 @@ env: POSTGRES_PASSWORD: "EK-5jnKfjrGRm<77" jobs: - lint-pylint: + lint: + strategy: + matrix: + job: + - pylint + - black + - isort + - bandit + - pyright runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: '3.9' + - uses: actions/setup-node@v2 + with: + node-version: '16' - id: cache-pipenv uses: actions/cache@v2.1.6 with: @@ -35,77 +46,7 @@ jobs: INSTALL: ${{ steps.cache-pipenv.outputs.cache-hit }} run: scripts/ci_prepare.sh - name: run pylint - run: pipenv run pylint authentik tests lifecycle - lint-black: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: '3.9' - - id: cache-pipenv - uses: actions/cache@v2.1.6 - with: - path: ~/.local/share/virtualenvs - key: ${{ runner.os }}-pipenv-v2-${{ hashFiles('**/Pipfile.lock') }} - - name: prepare - env: - INSTALL: ${{ steps.cache-pipenv.outputs.cache-hit }} - run: scripts/ci_prepare.sh - - name: run black - run: pipenv run black --check authentik tests lifecycle - lint-isort: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: '3.9' - - id: cache-pipenv - uses: actions/cache@v2.1.6 - with: - path: ~/.local/share/virtualenvs - key: ${{ runner.os }}-pipenv-v2-${{ hashFiles('**/Pipfile.lock') }} - - name: prepare - env: - INSTALL: ${{ steps.cache-pipenv.outputs.cache-hit }} - run: scripts/ci_prepare.sh - - name: run isort - run: pipenv run isort --check authentik tests lifecycle - lint-bandit: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: '3.9' - - id: cache-pipenv - uses: actions/cache@v2.1.6 - with: - path: ~/.local/share/virtualenvs - key: ${{ runner.os }}-pipenv-v2-${{ hashFiles('**/Pipfile.lock') }} - - name: prepare - env: - INSTALL: ${{ steps.cache-pipenv.outputs.cache-hit }} - run: scripts/ci_prepare.sh - - name: run bandit - run: pipenv run bandit -r authentik tests lifecycle - lint-pyright: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - with: - python-version: '3.9' - - uses: actions/setup-node@v2 - with: - node-version: '16' - - name: prepare - run: | - scripts/ci_prepare.sh - npm install -g pyright@1.1.136 - - name: run bandit - run: pipenv run pyright e2e lifecycle + run: pipenv run make ci-${{ matrix.job }} test-migrations: runs-on: ubuntu-latest steps: @@ -279,11 +220,7 @@ jobs: uses: codecov/codecov-action@v2 build: needs: - - lint-pylint - - lint-black - - lint-isort - - lint-bandit - - lint-pyright + - lint - test-migrations - test-migrations-from-stable - test-unittest diff --git a/Makefile b/Makefile index 1a16f2a89..e3e7e01ce 100644 --- a/Makefile +++ b/Makefile @@ -94,3 +94,21 @@ web-lint: web-extract: cd web && npm run extract + +# These targets are use by GitHub actions to allow usage of matrix +# which makes the YAML File a lot smaller + +ci-pylint: + pylint authentik tests lifecycle + +ci-black: + black --check authentik tests lifecycle + +ci-isort: + isort --check authentik tests lifecycle + +ci-bandit: + bandit -r authentik tests lifecycle + +ci-pyright: + pyright e2e lifecycle diff --git a/scripts/ci_prepare.sh b/scripts/ci_prepare.sh index 2df5adbd6..04773f6d7 100755 --- a/scripts/ci_prepare.sh +++ b/scripts/ci_prepare.sh @@ -7,3 +7,4 @@ if [[ "$INSTALL" != "true" ]]; then pipenv install --dev fi pipenv run python -m scripts.generate_ci_config +npm install -g pyright@1.1.136