We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7c279c commit 2addebfCopy full SHA for 2addebf
1 file changed
.github/workflows/build_test.yml
@@ -119,15 +119,19 @@ jobs:
119
FORCE_COLOR: 1
120
steps:
121
-
122
- uses: earthly/actions-setup@b81a8e082d9fae6174210cfc6e54bd2feb124d94
123
- with:
124
- version: "latest"
+ name: Install dependencies
+ run: |
+ sudo apt-get update
125
+ sudo apt-get install -y git python3 python3-venv python3-pip
126
127
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
128
129
name: Run check
- run: earthly --ci +secret-scan
130
131
+ python3 -m venv venv
132
+ source venv/bin/activate
133
+ pip3 install detect-secrets
134
+ git ls-files -z | xargs -0 detect-secrets-hook --baseline .secrets.baseline
135
136
137
build_python_package:
0 commit comments