Add rich example #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "test_and_badge" | |
on: | |
push: | |
branches: | |
- master | |
- main | |
jobs: | |
test_and_badge: | |
name: "Test and Badge" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Prepare" | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y curl git | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | |
source $HOME/.cargo/env | |
rustup toolchain install nightly | |
git clone https://github.com/deinstapel/cursive-aligned-view.git repo | |
- name: "Build and Test" | |
run: | | |
cd repo | |
RUST_CHAIN=stable ./scripts/ci-build.sh | |
RUST_CHAIN=nightly ./scripts/ci-build.sh | |
- name: "Deploy Badge" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cd repo | |
./scripts/deploy-badges.sh |