diff --git a/.github/workflows/codescan-analysis.yml b/.github/workflows/codescan-analysis.yml deleted file mode 100644 index e0d5e2a5..00000000 --- a/.github/workflows/codescan-analysis.yml +++ /dev/null @@ -1,35 +0,0 @@ -# This workflow requires that you have an existing account with codescan.io -# For more information about configuring your workflow, -# read our documentation at https://github.com/codescan-io/codescan-scanner-action -# name: CodeScan - -# on: -# push: -# branches: [ development ] -# pull_request: -# # The branches below must be a subset of the branches above -# branches: [ development ] - -# jobs: -# CodeScan: -# runs-on: ubuntu-latest -# steps: -# - name: Checkout repository -# uses: actions/checkout@v2 -# - name: Cache files -# uses: actions/cache@v2 -# with: -# path: | -# ~/.sonar -# key: ${{ runner.os }}-sonar -# restore-keys: ${{ runner.os }}-sonar -# - name: Run Analysis -# uses: codescan-io/codescan-scanner-action@master -# with: -# login: ${{ secrets.CODESCAN_AUTH_TOKEN }} -# organization: ${{ secrets.CODESCAN_ORGANIZATION_KEY }} -# projectKey: ${{ secrets.CODESCAN_PROJECT_KEY }} -# - name: Upload SARIF file -# uses: github/codeql-action/upload-sarif@v1 -# with: -# sarif_file: codescan.sarif diff --git a/.github/workflows/rubocop-analysis.yml b/.github/workflows/rubocop-analysis.yml deleted file mode 100644 index f923b466..00000000 --- a/.github/workflows/rubocop-analysis.yml +++ /dev/null @@ -1,40 +0,0 @@ -# pulled from repo -# name: "Rubocop" - -# on: push - -# jobs: -# rubocop: -# runs-on: ubuntu-latest -# strategy: -# fail-fast: false - -# steps: -# - name: Checkout repository -# uses: actions/checkout@v2 - -# # If running on a self-hosted runner, check it meets the requirements -# # listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners -# - name: Set up Ruby -# uses: ruby/setup-ruby@v1 -# with: -# ruby-version: 2.6 - -# # This step is not necessary if you add the gem to your Gemfile -# - name: Install Code Scanning integration -# run: bundle add code-scanning-rubocop --version 0.3.0 --skip-install - -# - name: Install dependencies -# run: bundle install - -# - name: Rubocop run -# run: | -# bash -c " -# bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif -# [[ $? -ne 2 ]] -# " - -# - name: Upload Sarif output -# uses: github/codeql-action/upload-sarif@v1 -# with: -# sarif_file: rubocop.sarif