Skip to content

Commit

Permalink
Merge pull request #4 from IMMM-SFA/NATURF2
Browse files Browse the repository at this point in the history
bring in existing work to main
  • Loading branch information
crvernon authored Jun 13, 2022
2 parents 46274df + 925d497 commit d023b51
Show file tree
Hide file tree
Showing 23 changed files with 2,877 additions and 2,951 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: build

on: [push, pull_request]

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]

env:
OS: ${{ matrix.os }}
PYTHON: '3.8'

steps:

- uses: actions/checkout@v1

- name: Set up Python
uses: actions/setup-python@master
with:
python-version: 3.8.5

- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
sudo apt-get install libgdal-dev
python setup.py install
- name: Test and generate coverage report on Linux
run: |
pip install pytest
pip install pytest-cov
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
fail_ci_if_error: true
Empty file modified NATURF/.gitkeep
100644 → 100755
Empty file.
3 changes: 3 additions & 0 deletions NATURF/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"git.ignoreLimitWarning": true
}
Loading

0 comments on commit d023b51

Please sign in to comment.