Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 634 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 634 Bytes

Code Retreat Skeleton Code

This repository contains skeleton code that Code Retreat Participants can use to get started.

Go

# Update BUILD files
./pleasew puku fmt //go/...

# Run the binary
./pleasew run //go/cmd/conway

# Run the tests
./pleasew test //go/...

# Install third party packages
./pleasew build //third_party/go:toolchain
GO="$PWD/$(./pleasew query outputs //third_party/go:toolchain)/bin/go"
(cd third_party/go && $GO get github.com/example/module@latest) && ./pleasew puku sync -w

Python

# Run the binary
./pleasew run //python:main

# Run the tests
./pleasew test //python/...