Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 1.17 KB

README.md

File metadata and controls

48 lines (32 loc) · 1.17 KB

test docker ghcr-release

sandbox-rust

A sandbox for Rust

Prerequisites

Development instructions

Local development

Use Makefile to run the project locally.

# help
make

# install dependencies for development
make install-deps-dev

# run tests
make test

# build applications
make build

# run CI tests
make ci-test

Docker development

# build docker image
make docker-build

# run docker container
make docker-run

# run CI tests in docker container
make ci-test-docker