diff --git a/main.yml b/main.yml index fc5790f..71e879d 100644 --- a/main.yml +++ b/main.yml @@ -37,12 +37,8 @@ jobs: - uses: actions/setup-node@v3 # setup node with: node-version: 16 - - run: rm -rf tests # remove any user provided test dir - - uses: actions/checkout@v3 # checkout tests repo + - uses: actions/setup-python@v4 with: - repository: - path: tests - - name: npm install - run: cd tests && npm i - - name: Run Tests - run: node tests/test.js + python-version: 3.11 + - run: pip install -r requirements.txt + - run: python manage.py test