From 6e63768c711fc2cc028bec38f34655fa8f0e5bf9 Mon Sep 17 00:00:00 2001 From: snowy Date: Tue, 18 Jun 2024 23:32:58 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20=E6=96=B0logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/liteyuki-test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/liteyuki-test.yml diff --git a/.github/workflows/liteyuki-test.yml b/.github/workflows/liteyuki-test.yml new file mode 100644 index 00000000..a844c5ce --- /dev/null +++ b/.github/workflows/liteyuki-test.yml @@ -0,0 +1,23 @@ +name: LiteyukiBot test + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python 3.10 Env + uses: actions/setup-python@v2 + with: + python-version: 3.10 + - name: Install dependencies for LiteyukiBot + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + - name: Run tests + run: | + python main.py \ No newline at end of file