From 1601b28233715ae145a1d4d6639aad5e46739be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kerem=20G=C3=BCne=C5=9F?= <1508306+krmgns@users.noreply.github.com> Date: Thu, 1 Feb 2024 08:47:59 +0300 Subject: [PATCH] First commit. --- .github/workflows/test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..0aec3e4 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,27 @@ +name: Unit Test + +on: + push: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + python-version: ['3.9', '3.10', '3.11'] + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v1 + with: + python-version: ${{ matrix.python-version }} + + # - name: Install Dependencies + # run: python -m pip install --upgrade pip + + - name: Run Tests + run: python -m unittest ouuid/test/unit.py