diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml new file mode 100644 index 00000000..0b94c074 --- /dev/null +++ b/.github/workflows/unit_tests.yml @@ -0,0 +1,21 @@ +name: CI-UnitTests + +on: [push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out source repository + uses: actions/checkout@v3 + + - name: Set up Python environment + uses: actions/setup-python@v4 + with: + python-version: "3.10" + - name: Install dependencies + run: | + pip install django==3.2 + pip install dj-database-url + - name: Run tests + run: python -m runtests \ No newline at end of file