We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71d1062 commit a96c509Copy full SHA for a96c509
.github/workflows/dockerized-test.yml
@@ -12,14 +12,18 @@ jobs:
12
strategy:
13
matrix:
14
ruby_version: ['3.1', '3.2', '3.3']
15
+ fail-fast: false
16
17
steps:
18
- uses: actions/checkout@v3
19
+
20
- name: Set up ruby
21
uses: ruby/setup-ruby@v1
22
with:
23
ruby-version: ${{ matrix.ruby_version }}
24
25
- name: Build the lib
26
run: make build
27
28
- name: Build the image
29
run: docker build . -t local/test -f Dockerfile.test --build-arg BASE_IMAGE=public.ecr.aws/lambda/ruby:${{ matrix.ruby_version }}
0 commit comments