Add docker 27 to test matrix #39
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
docker-version: | |
- "18.03" | |
- "18.09" | |
- "19.03" | |
- "20.10" | |
- "23" | |
- "24" | |
- "25" | |
- "26" | |
- "27" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Show host Docker information | |
run: | | |
docker version | |
docker info | |
- name: Run tests with Docker ${{ matrix.docker-version }} | |
run: | | |
if [[ '${{ runner.debug }}' == 1 ]]; then | |
export DEBUG=true | |
export DOND_SHIM_DEBUG=true | |
fi | |
scripts/test.sh '${{ matrix.docker-version }}' | |
result: | |
needs: test | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "All tests passed!" |