From 98924d49345680c023ff03b139e2e22c9959de6a Mon Sep 17 00:00:00 2001 From: alyssa Date: Thu, 5 Sep 2024 18:50:09 +0900 Subject: [PATCH] test --- .github/workflows/ci.yml | 2 ++ ci/Dockerfile | 1 - ci/run_ci.py | 0 3 files changed, 2 insertions(+), 1 deletion(-) mode change 100644 => 100755 ci/run_ci.py 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