We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b87b342 commit 72b92d0Copy full SHA for 72b92d0
1 file changed
.github/workflows/tests.yml .github/workflows/build.yml.github/workflows/tests.yml renamed to .github/workflows/build.yml
@@ -1,6 +1,6 @@
1
# This is a basic workflow to help you get started with Actions
2
3
-name: Tests
+name: Build and Test and Scan
4
5
# Controls when the action will run.
6
on:
@@ -26,7 +26,12 @@ jobs:
26
- uses: actions/checkout@v2
27
28
# Runs a single command using the runners shell
29
- - name: Run the tests script
+ - name: Run the build and test script
30
run: ./tests.sh
31
32
+ - name: Scan image
33
+ uses: anchore/scan-action@v2
34
+ with:
35
+ image: "mendhak/http-https-echo:latest"
36
+
37
0 commit comments