We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46e6d4f commit 80d03fbCopy full SHA for 80d03fb
1 file changed
.github/workflows/test.yml
@@ -0,0 +1,31 @@
1
+name: test
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ tags-ignore:
7
+ - '**'
8
9
+jobs:
10
+ docker:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v6
14
15
+ - name: Set up Docker Buildx
16
+ uses: docker/setup-buildx-action@v4
17
18
+ - name: build
19
+ uses: docker/build-push-action@v7
20
+ with:
21
+ load: true
22
+ tags: aws-codedeploy-action:latest
23
24
+ - name: Test installed tools
25
+ run: |
26
+ set -e
27
+ docker run --rm --entrypoint jq aws-codedeploy-action:latest --version
28
+ docker run --rm --entrypoint unzip aws-codedeploy-action:latest -v
29
+ docker run --rm --entrypoint zip aws-codedeploy-action:latest -v
30
+ docker run --rm --entrypoint tar aws-codedeploy-action:latest --version
31
+ docker run --rm --entrypoint gzip aws-codedeploy-action:latest --version
0 commit comments