|
| 1 | +name: Test |
| 2 | + |
| 3 | +on: |
| 4 | + push: |
| 5 | + branches: |
| 6 | + - master |
| 7 | + - develop |
| 8 | + pull_request: |
| 9 | + |
| 10 | +jobs: |
| 11 | + lint: |
| 12 | + runs-on: ubuntu-latest |
| 13 | + steps: |
| 14 | + - uses: actions/checkout@v2 |
| 15 | + - uses: actions/setup-python@v2 |
| 16 | + |
| 17 | + - name: Install dependencies |
| 18 | + run: | |
| 19 | + python -m pip install --upgrade pip tox |
| 20 | + - name: Lint with flake8 |
| 21 | + run: | |
| 22 | + tox -e lint |
| 23 | +
|
| 24 | + test: |
| 25 | + runs-on: ubuntu-latest |
| 26 | + strategy: |
| 27 | + fail-fast: false |
| 28 | + matrix: |
| 29 | + python-version: [ "3.8", "3.9", "3.10"] |
| 30 | + django-version: [ "2.2", "3.2", "4.0"] |
| 31 | + db-engine: ["pg", "mysql"] |
| 32 | + env: |
| 33 | + PY_VER: ${{ matrix.python-version}} |
| 34 | + DJ_VER: ${{ matrix.django-version}} |
| 35 | + DBENGINE: ${{ matrix.db-engine}} |
| 36 | + MYSQL_USER: 'root' |
| 37 | + MYSQL_PASSWORD: 'root' |
| 38 | + |
| 39 | + services: |
| 40 | + postgres: |
| 41 | + image: postgres |
| 42 | + env: |
| 43 | + POSTGRES_USER: postgres |
| 44 | + POSTGRES_PASSWORD: postgres |
| 45 | + POSTGRES_DB: concurrency |
| 46 | + ports: |
| 47 | + - 5432:5432 |
| 48 | + options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 |
| 49 | + |
| 50 | +# mysql: |
| 51 | +# image: mysql:5.7 |
| 52 | +# env: |
| 53 | +# MYSQL_DATABASE: test_db |
| 54 | +# MYSQL_USER: user |
| 55 | +# MYSQL_PASSWORD: password |
| 56 | +# MYSQL_ROOT_PASSWORD: rootpassword |
| 57 | +# ports: |
| 58 | +# - 33306:3306 |
| 59 | +# options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=5 |
| 60 | + |
| 61 | + steps: |
| 62 | + - uses: actions/checkout@v2 |
| 63 | + |
| 64 | + - name: Setup MySQL |
| 65 | + run: | |
| 66 | + sudo /etc/init.d/mysql start |
| 67 | + mysql -e 'CREATE DATABASE concurrency;' -uroot -proot |
| 68 | + mysql -e 'SHOW DATABASES;' -uroot -proot |
| 69 | +
|
| 70 | + - name: Set up Python ${{ matrix.python-version }} |
| 71 | + uses: actions/setup-python@v2 |
| 72 | + with: |
| 73 | + python-version: ${{ matrix.python-version }} |
| 74 | + |
| 75 | + - name: Install dependencies |
| 76 | + run: python -m pip install --upgrade pip tox |
| 77 | + |
| 78 | + - name: Test with |
| 79 | + run: tox -e d${DJ_VER//.}-py${PY_VER//.}-${DBENGINE} |
| 80 | + |
| 81 | + - uses: codecov/codecov-action@v1 |
| 82 | + with: |
| 83 | + verbose: true |
0 commit comments