Fix alias ref page not rendering w/ userInfo
#310
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: CI | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
if: | | |
!(github.event_name == 'push' && contains(github.event.head_commit.message, '[skip ci]')) | |
steps: | |
- name: Install latest nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rustfmt, clippy | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache Rust artifacts | |
uses: Swatinem/rust-cache@v2 | |
with: | |
prefix-key: "7ee02414-911d-42f1-8867-383492c41111" | |
save-if: ${{ github.ref == 'refs/heads/master' }} | |
- name: Install clippy | |
run: rustup component add clippy | |
- name: Run tests | |
run: cargo test --verbose --all | |
- name: Run clippy | |
run: cargo clippy |