Skip to content

Commit 1ab9343

Browse files
committed
Fix workflow
1 parent 83e5fe9 commit 1ab9343

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.github/workflows/squash.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,10 @@ jobs:
5151
run: |
5252
for pkg in containerd runc; do sudo apt-get remove $pkg; done
5353
sudo apt-get update
54-
sudo apt-get install ca-certificates curl
55-
sudo install -m 0755 -d /etc/apt/keyrings
56-
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
57-
sudo chmod a+r /etc/apt/keyrings/docker.asc
58-
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
54+
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
55+
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable"
56+
apt-cache policy docker-ce
57+
sudo apt-get install docker-ce docker-ce-cli containerd.io
5958
pip install -U pip
6059
pip install "tox<4.0.0"
6160
- name: Info

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ test-py310: prepare
2121
test-py311: prepare
2222
tox -e py311 -- tests
2323

24+
test-py312: prepare
25+
tox -e py312 -- tests
26+
2427
test-unit: prepare
2528
tox -- tests/test_unit*
2629

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,py38,py39,py310,py311
2+
envlist = py36,py37,py38,py39,py310,py311,py312
33

44
[testenv]
55
passenv=CI,HOME

0 commit comments

Comments
 (0)