Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 914 Bytes

CONTRIBUTING.md

File metadata and controls

44 lines (28 loc) · 914 Bytes

Contributing

Getting Started Locally

Slack

Add your bot token and channel ID as environment variables to run tests.

export SLACK_BOT_TOKEN=xoxb-0000000000000000000000
export SLACK_CHANNEL_ID=C0000000000

See the readme for more details

Compiling

cargo build

See cargo-build.

Alternatively, as this is a library and not a binary, a plugin such as rust-analyzer will run cargo within your IDE and notify you of any compile errors.

Testing

Run Unit Tests

cargo tu

Run Test Output Tests

These tests output test data to stdout and can be used to visually check data during development.

cargo to

See cargo-test.