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 7e8d1fe commit 7776c9aCopy full SHA for 7776c9a
.github/workflows/tests.yml
@@ -3,21 +3,15 @@ name: Test Suite
3
on:
4
push:
5
branches:
6
- - master
+ - main
7
pull_request:
8
9
10
11
jobs:
12
build:
13
runs-on: ubuntu-latest
14
15
- services:
16
- docker:
17
- image: docker:19.03.12
18
- options: >-
19
- --privileged
20
-
21
steps:
22
- name: Checkout code
23
uses: actions/checkout@v2
@@ -27,8 +21,10 @@ jobs:
27
with:
28
ruby-version: 2.7
29
30
- - name: Install Docker
24
+ - name: Install Docker and Docker Compose
31
25
run: |
26
+ # Remove conflicting containerd package if it exists
+ sudo apt-get remove -y containerd
32
sudo apt-get update
33
sudo apt-get install -y docker.io docker-compose
34
0 commit comments