Skip to content

Merge pull request #64 from vintasoftware/dependabot/pip/django-4.1.13 #15

Merge pull request #64 from vintasoftware/dependabot/pip/django-4.1.13

Merge pull request #64 from vintasoftware/dependabot/pip/django-4.1.13 #15

Workflow file for this run

name: build
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r requirements-test.txt
pip install "tox<4"
- name: Run tests
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
fab coverage
coveralls
- name: Build
run: fab build