Skip to content

Merge pull request #75 from precisiontox/DomChangeRoles #335

Merge pull request #75 from precisiontox/DomChangeRoles

Merge pull request #75 from precisiontox/DomChangeRoles #335

Workflow file for this run

name: CI Build
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, '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: Upgrade pip
run: |
python -m pip install --upgrade pip
- name: Install dependencies
run: |
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: flake8
- name: Make .env file
run: mv ./ptmd/resources/.env.example ./ptmd/resources/.env
- name: Test with python unittest
run: |
coverage run -m unittest discover -s tests/
coverage report -m
- name: Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
flag-name: Unit Test
coveralls_finish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true