From 98d7cf53758d3575cf014e08e666fa2867334150 Mon Sep 17 00:00:00 2001 From: Frank Kriete Date: Wed, 13 Oct 2021 15:58:26 -0400 Subject: [PATCH] add ct file --- .github/workflows/ct.yml | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/ct.yml diff --git a/.github/workflows/ct.yml b/.github/workflows/ct.yml new file mode 100644 index 0000000..bf22363 --- /dev/null +++ b/.github/workflows/ct.yml @@ -0,0 +1,53 @@ +--- +######## +######## +## CT ## +######## +######## +name: Continuous Testing + +# +# Documentation: +# https://help.github.com/en/articles/workflow-syntax-for-github-actions +# + +############################# +# Start the job on all push # +############################# +# Don't need to run on push to master/main +on: + push: + branches-ignore: + - 'master' + - 'main' + +############### +# Set the Job # +############### +jobs: + build: + # Name the Job + name: CT + # Set the agent to run on + runs-on: ubuntu-latest + ################## + # Load all steps # + ################## + steps: + ########################## + # Checkout the code base # + ########################## + - name: Checkout Code + uses: actions/checkout@v2 + with: + fetch-depth: 0 + + ################################ + # Run Linter against code base # + ################################ + - name: Lint Code Base + uses: github/super-linter@v4 + env: + VALIDATE_ALL_CODEBASE: false + DEFAULT_BRANCH: main + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}