We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72f658e commit 2b40b80Copy full SHA for 2b40b80
1 file changed
.github/workflows/dockerized-test.yml
@@ -1,24 +1,28 @@
1
name: dockerized-test
2
3
+permissions:
4
+ contents: read
5
+
6
on:
7
push:
8
branches: [ main ]
9
pull_request:
10
branches: [ '*' ]
11
workflow_dispatch:
12
13
14
jobs:
15
dockerized-test:
16
runs-on: ubuntu-latest
17
18
steps:
- - uses: actions/checkout@v3
19
+ - uses: actions/checkout@v6
20
21
- name: Build the image
22
run: docker build . -t local/test -f Dockerfile.rie
23
24
- name: Run tests
25
uses: aws/containerized-test-runner-for-aws-lambda@v1
26
with:
- suiteFileArray: '["./tests/dockerized/*.json"]'
27
+ suiteFileArray: '["./test/dockerized/*.json"]'
28
dockerImageName: 'local/test'
0 commit comments