Skip to content

Commit a96c509

Browse files
committed
feat: add new GitHub action workflow
1 parent 71d1062 commit a96c509

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/dockerized-test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@ jobs:
1212
strategy:
1313
matrix:
1414
ruby_version: ['3.1', '3.2', '3.3']
15+
fail-fast: false
1516

1617
steps:
1718
- uses: actions/checkout@v3
19+
1820
- name: Set up ruby
1921
uses: ruby/setup-ruby@v1
2022
with:
2123
ruby-version: ${{ matrix.ruby_version }}
24+
2225
- name: Build the lib
2326
run: make build
27+
2428
- name: Build the image
2529
run: docker build . -t local/test -f Dockerfile.test --build-arg BASE_IMAGE=public.ecr.aws/lambda/ruby:${{ matrix.ruby_version }}

0 commit comments

Comments
 (0)