diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-14 15:04:37 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-01-14 15:04:37 +0100 |
commit | 32252def150da94f12d1f3c07f977af6d8931402 (patch) | |
tree | 05a94b53b83461b8249de965e093b4fd3722e2d1 /.github | |
parent | Refactor code with AI (diff) | |
download | gpt4free-32252def150da94f12d1f3c07f977af6d8931402.tar gpt4free-32252def150da94f12d1f3c07f977af6d8931402.tar.gz gpt4free-32252def150da94f12d1f3c07f977af6d8931402.tar.bz2 gpt4free-32252def150da94f12d1f3c07f977af6d8931402.tar.lz gpt4free-32252def150da94f12d1f3c07f977af6d8931402.tar.xz gpt4free-32252def150da94f12d1f3c07f977af6d8931402.tar.zst gpt4free-32252def150da94f12d1f3c07f977af6d8931402.zip |
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/unittest.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/unittest.yml b/.github/workflows/unittest.yml new file mode 100644 index 00000000..e895e969 --- /dev/null +++ b/.github/workflows/unittest.yml @@ -0,0 +1,19 @@ +name: Unittest + +on: [push] + +jobs: + build: + name: Build unittest + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.x" + cache: 'pip' + - name: Install requirements + - run: pip install -r requirements.txt + - name: Run tests + run: python -m etc.unittest.main
\ No newline at end of file |