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