Skip to content

Feature/set watering plan status on tree crud #799

Feature/set watering plan status on tree crud

Feature/set watering plan status on tree crud #799

name: "Build and test project on PR"
on:
pull_request:
branches:
- develop
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Dependencies
run: sudo apt-get update && sudo apt-get install -y make build-essential libgeos-dev libproj-dev
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Setup
run: make setup/ci
- name: Build
run: make build
- name: Test
run: make test
test_pkg_client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Dependencies
run: sudo apt-get update && sudo apt-get install -y make build-essential libgeos-dev libproj-dev
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Setup
run: make setup/ci
- name: Test
run: cd pkg/client && go test ./...