Merge pull request #60 from koladev32/revert-57-56-rename-project #117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
name: Testing Django REST Simple API Key | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
[ | |
"3.10", | |
"3.11", | |
] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Dependencies | |
run: | | |
make install | |
- name: Run Tests | |
run: | | |
make test |