diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f164f5c..f4bf4025 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,3 +17,5 @@ jobs: needs: ["build-ci-container"] container: image: pkci + steps: + - run: /run_ci.py diff --git a/ci/Dockerfile b/ci/Dockerfile index 09dc5d41..5d9bb5e5 100644 --- a/ci/Dockerfile +++ b/ci/Dockerfile @@ -1,4 +1,3 @@ FROM alpine:latest RUN apk add python3 COPY ci/run_ci.py /run_ci.py -ENTRYPOINT ["/run_ci.py"] diff --git a/ci/run_ci.py b/ci/run_ci.py old mode 100644 new mode 100755