From cb350b6288adabbb7b3dded064c0f3bc77b4aca5 Mon Sep 17 00:00:00 2001 From: sangge-win <2251250136@qq.com> Date: Sun, 21 Apr 2024 21:53:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9ci=E5=91=BD=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/python-test.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-test.yml b/.github/workflows/python-test.yml index 1e305f8..1042ee4 100644 --- a/.github/workflows/python-test.yml +++ b/.github/workflows/python-test.yml @@ -9,14 +9,10 @@ on: jobs: build: runs-on: "ubuntu-latest" - container: python:latest steps: - uses: actions/checkout@v2 - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple + run: pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple - name: Run tests - run: | - python -m unittest discover -s tests + run: python -m unittest discover -s tests