Skip to content

Add Code to Calculate if a point is in a Region around DNA #1101

Add Code to Calculate if a point is in a Region around DNA

Add Code to Calculate if a point is in a Region around DNA #1101

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
# - name: Set up Ubuntu dependencies (Qt5)
# run: |
# apt update
# apt-get install -y libglu1-mesa libqt5x11extras5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry and link it if it isn't automatically found
run: |
make poetry-download
if ! command -v poetry ; then ln -s /root/.local/bin/poetry /usr/bin/poetry ; fi
- name: Set up cache
uses: actions/cache@v2.1.7
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install
- name: Run style checks
run: |
make check-codestyle
- name: Run tests
run: |
make test
- name: Run safety checks
run: |
make check-safety