From d803e34a72b15a05c14cdd100f0e090a8b6a9164 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Thu, 4 Jun 2020 17:23:15 +0100 Subject: [PATCH 1/2] feat: add security and complexity baseline #33 --- .github/workflows/{python.yml => python_build.yml} | 4 ++++ 1 file changed, 4 insertions(+) rename .github/workflows/{python.yml => python_build.yml} (85%) diff --git a/.github/workflows/python.yml b/.github/workflows/python_build.yml similarity index 85% rename from .github/workflows/python.yml rename to .github/workflows/python_build.yml index 604219724f7..7c52a50a24b 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python_build.yml @@ -29,3 +29,7 @@ jobs: run: make lint - name: Test with pytest run: make test + - name: Security baseline + run: make test + - name: Complexity baseline + run: make test From a558aba73d3874311dff65446cba111a11ac7301 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Thu, 4 Jun 2020 17:28:50 +0100 Subject: [PATCH 2/2] fix: actual baseline target --- .github/workflows/python_build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python_build.yml b/.github/workflows/python_build.yml index 7c52a50a24b..d55d5c5e69c 100644 --- a/.github/workflows/python_build.yml +++ b/.github/workflows/python_build.yml @@ -30,6 +30,6 @@ jobs: - name: Test with pytest run: make test - name: Security baseline - run: make test + run: make security-baseline - name: Complexity baseline - run: make test + run: make complexity-baseline