mirror of
https://github.com/ratatui-org/ratatui
synced 2025-02-18 15:08:56 +00:00
10 lines
109 B
Bash
10 lines
109 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
make build
|
||
|
make test
|
||
|
if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
|
||
|
make lint
|
||
|
fi
|