Removes unused binaries, implements ArenaTree, commands rw #23
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: Build and Deploy | |
on: [push] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Install fuse libfuse-dev pkg-config | |
run: sudo apt-get install -y fuse libfuse-dev pkg-config | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rustfmt, clippy | |
- run: cargo build --release --all-features | |
- run: RUSTDOCFLAGS='-Z unstable-options --enable-index-page' cargo doc --bin gawires --no-deps | |
- name: Deploy 🚀 | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages # The branch the action should deploy to. | |
folder: target/doc # The folder the action should deploy. |