mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-15 01:17:13 +00:00
9 lines
109 B
Bash
Executable file
9 lines
109 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
make build
|
|
make test
|
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
|
make lint
|
|
fi
|