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 d0f76a3 commit eec83c3Copy full SHA for eec83c3
.github/workflows/tests.yml
@@ -23,10 +23,10 @@ jobs:
23
- name: Create docker image and run container
24
run: |
25
docker build --build-arg VERSION=${{ matrix.version }} -t "sqids-bash/test:bash-${{ matrix.version }}" .
26
- docker run -id "sqids-bash/test:bash-${{ matrix.version }}"
+ docker run -id --name "bash-${{ matrix.version }}" "sqids-bash/test:bash-${{ matrix.version }}"
27
28
- name: Run tests
29
- run: bats -T ./tests
+ run: docker container exec "bash-${{ matrix.version }}" bats ./tests
30
31
lint:
32
runs-on: ubuntu-latest
0 commit comments