Skip to content

Commit

Permalink
Branch was auto-updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
patel-bhavin authored Jul 10, 2024
2 parents 71c22d7 + b36c64f commit bee17b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@ jobs:
python-version: '3.11' #Available versions here - https://github.com/actions/python-versions/releases easy to change/make a matrix/use pypy
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified

- name: Install System Packages
run: |
sudo apt update -qq
sudo apt install jq -qq

- name: Install Python Dependencies and ContentCTL and Atomic Red Team
run: |
pip install contentctl
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/unit-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ on:
jobs:
unit-testing:
runs-on: ubuntu-latest
outputs:
has_detections: ${{ steps.check_detections.outputs.has_detections }}
if: "!contains(github.ref, 'refs/tags/')" #don't run on tags - future steps won't run either since they depend on this job
# needs: [validate-tag-if-present, quit-for-dependabot]
steps:
Expand All @@ -20,10 +18,8 @@ jobs:
python-version: '3.11' #Available versions here - https://github.com/actions/python-versions/releases easy to change/make a matrix/use pypy
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified

- name: Install System Packages and contentctl
- name: Install Python Dependencies and ContentCTL
run: |
sudo apt update -qq
sudo apt install jq -qq
python -m pip install --upgrade pip
pip install contentctl
Expand Down

0 comments on commit bee17b8

Please sign in to comment.