Skip to content

Commit

Permalink
v0.6.1 (#3)
Browse files Browse the repository at this point in the history
* Cleanup

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Optimize features

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Add smokescreen install

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Features

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Fix tests

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* fmt

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

---------

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
  • Loading branch information
ggwpez authored Jun 21, 2023
1 parent 39be8f1 commit dd84e53
Show file tree
Hide file tree
Showing 12 changed files with 215 additions and 314 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Smokescreen testing that it can be installed via cargo and runs.
name: Cargo install

on:
push:
branches: [master, dev]
tags: ["v*.*.*"]
pull_request:

env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1

jobs:
install:
name: "Smokescreen Install"
runs-on: ubuntu-latest

steps:
- name: Cargo install
run: cargo install --git ${{ github.server_url }}/${{ github.repository }} zepter --rev $GITHUB_SHA

- name: CLI works
run: zepter --version && zepter --help
Loading

0 comments on commit dd84e53

Please sign in to comment.