We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f041331 commit e34be37Copy full SHA for e34be37
.github/workflows/test.yml
@@ -4,10 +4,10 @@ on: [push]
4
5
jobs:
6
test:
7
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-24.04
8
steps:
9
- uses: actions/checkout@v4
10
- - run: docker-compose run tests
+ - run: docker compose run tests
11
- uses: codecov/codecov-action@v4
12
with:
13
token: ${{ secrets.CODECOV_TOKEN }}
docker-compose.yml
@@ -1,5 +1,5 @@
1
# Copyright 1999-2024. WebPros International GmbH.
2
-version: '2'
+version: '3'
3
services:
plesk:
image: plesk/plesk:latest
@@ -12,7 +12,8 @@ services:
- /run
- /run/lock
14
volumes:
15
- - /sys/fs/cgroup:/sys/fs/cgroup:ro
+ - /sys/fs/cgroup:/sys/fs/cgroup
16
+ cgroup: host
17
tests:
18
build: .
19
environment:
0 commit comments