Skip to content

update README

update README #15

Workflow file for this run

name: Run tests
on:
push:
pull_request:
branches:
- main
- dev
schedule:
- cron: '0 4 * * 0' # run at 4 AM UTC every Sunday
jobs:
tests:
name: Running tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
apt-get update && apt-get install -y git-lfs
git lfs install
pip install --upgrade pip
pip install git+https://gitlab.windenergy.dtu.dk/TOPFARM/[email protected]
pip install -e .[test]
- name: Test with pytest
run: |
py.test --durations=0 tests/