File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 11name : Tests against recent Docker engine releases
22
33on :
4+ workflow_dispatch :
45 schedule :
56 # nightly build, at 23:59 CEST
67 - cron : ' 59 23 * * *'
@@ -18,19 +19,19 @@ jobs:
1819 - uses : ./.github/actions/setup-build
1920
2021 - name : Install Stable Docker
21- if : ${{ matrix.install-docker-type == " STABLE" }}
22+ if : ${{ matrix.install-docker-type == ' STABLE' }}
2223 run : curl https://get.docker.com
2324
2425 - name : Install Docker from the TEST channel
25- if : ${{ matrix.install-docker-type == " ROOTFUL" }}
26+ if : ${{ matrix.install-docker-type == ' ROOTFUL' }}
2627 run : curl https://get.docker.com | CHANNEL=test sh
2728
2829 - name : Setup rootless Docker
29- if : ${{ matrix.install-docker-type == " ROOTLESS" }}
30+ if : ${{ matrix.install-docker-type == ' ROOTLESS' }}
3031 uses : ScribeMD/rootless-docker@6bd157a512c2fafa4e0243a8aa87d964eb890886 # v0.2.2
3132
3233 - name : Remove Docker root socket
33- if : ${{ matrix.install-docker-type == " ROOTLESS" }}
34+ if : ${{ matrix.install-docker-type == ' ROOTLESS' }}
3435 run : sudo rm -rf /var/run/docker.sock
3536
3637 - name : Check Docker version
You can’t perform that action at this time.
0 commit comments