leo/.github/workflows/leo-init.yml

49 lines
981 B
YAML
Raw Normal View History

2021-01-17 21:33:52 +03:00
name: leo-init
on:
pull_request:
push:
branches:
- master
paths-ignore:
- 'docs/**'
- 'documentation/**'
env:
RUST_BACKTRACE: 1
jobs:
init:
name: Hello Leo ('leo init')
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt
2021-01-18 00:57:48 +03:00
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
2021-01-17 21:33:52 +03:00
- name: Install Leo
uses: actions-rs/cargo@v1
with:
command: install
2021-01-18 00:33:54 +03:00
args: --path .
2021-01-17 21:33:52 +03:00
- name: 'leo init'
run: |
cd .. && mkdir hello-world && cd hello-world
leo init
ls -la
leo run