We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ed86997 + 1df485b commit 4466f39Copy full SHA for 4466f39
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: CI
+name: Build and Test and Scan
4
5
# Controls when the action will run.
6
on: [push, pull_request, workflow_dispatch]
@@ -17,8 +17,13 @@ jobs:
17
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
18
- uses: actions/checkout@v2
19
20
- # Runs a single command using the runners shell
21
- - name: Run a one-line script
+ - name: Build and test the image
22
run: ./tests.sh
23
+ - name: Scan the image
24
+ uses: anchore/scan-action@v2
25
+ with:
26
+ image: "mendhak/http-https-echo:latest"
27
+ debug: false
28
+
29
0 commit comments