diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-01-26 07:54:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-26 07:54:13 +0100 |
commit | feb83c168b0a57ecd8c511aa654209c5f40da30e (patch) | |
tree | 84ef9a576064b7480e339426d9966b17a3102cad /.github/workflows/unittest.yml | |
parent | Merge pull request #1510 from hlohaus/sort (diff) | |
download | gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.gz gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.bz2 gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.lz gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.xz gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.tar.zst gpt4free-feb83c168b0a57ecd8c511aa654209c5f40da30e.zip |
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/unittest.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml index aadc7b86..90558f09 100644 --- a/.github/workflows/unittest.yml +++ b/.github/workflows/unittest.yml @@ -15,10 +15,19 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python + - name: Set up Python 3.8 uses: actions/setup-python@v4 with: - python-version: "3.x" + python-version: "3.8" + cache: 'pip' + - name: Install min requirements + run: pip install -r requirements-min.txt + - name: Run tests + run: python -m etc.unittest + - name: Set up Python 3.11 + uses: actions/setup-python@v4 + with: + python-version: "3.11" cache: 'pip' - name: Install requirements run: pip install -r requirements.txt |