Update test.yml #6
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, pull_request] | |
jobs: | |
setup: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
docker_channel: [stable, nightly] # Adjust as needed | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Docker | |
uses: docker-practice/actions-setup-docker@master | |
with: | |
docker_channel: ${{ matrix.docker_channel }} | |
- name: Verify Docker installation | |
run: docker --version |