Skip to content

Commit

Permalink
Adiciona action para executar testes automaticos labens-ufrn#48
Browse files Browse the repository at this point in the history
Adiciona github action para a execução dos testes de forma automática sempre que há um commit ou pull request para o branch master.
  • Loading branch information
br-adriel authored Dec 1, 2022
1 parent 84bd573 commit 7acbcf2
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/run_django_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run tests

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Tests
run: |
python manage.py test

0 comments on commit 7acbcf2

Please sign in to comment.