File tree Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Expand file tree Collapse file tree 4 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1
- name-template : " Release v$RESOLVED_VERSION 🌈 "
1
+ name-template : " Release v$RESOLVED_VERSION 🦀 "
2
2
tag-template : " v$RESOLVED_VERSION"
3
3
categories :
4
4
- title : " 🚀 Features"
Original file line number Diff line number Diff line change 1
1
name : Cargo Build & Test
2
2
3
3
on :
4
+ workflow_dispatch :
4
5
push :
6
+ branches : [ "main" ]
5
7
pull_request :
6
8
7
9
env :
@@ -11,14 +13,13 @@ jobs:
11
13
build_and_test :
12
14
name : Rust project - latest
13
15
runs-on : ubuntu-latest
14
- strategy :
15
- matrix :
16
- toolchain :
17
- - stable
18
- - beta
19
- - nightly
20
16
steps :
21
17
- uses : actions/checkout@v3
22
- - run : rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
18
+ - name : Install the nightly toolchain
19
+ uses : dtolnay/rust-toolchain@nightly
20
+ - name : Install linux dependencies
21
+ if : runner.os == 'Linux'
22
+ run : |
23
+ sudo apt update && sudo apt install build-essential libssl-dev pkg-config libglib2.0-dev libgtk-3-dev
23
24
- run : cargo build --verbose
24
- - run : cargo test --verbose
25
+ - run : cargo test --verbose
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ members = [
9
9
]
10
10
11
11
[workspace .dependencies ]
12
- dioxus = " 0.5 "
12
+ dioxus = " 0.6.0-alpha.2 "
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " dioxus-free-icons"
3
- version = " 0.8.6 "
3
+ version = " 0.9.0 "
4
4
edition = " 2021"
5
5
authors = [" Daiki Nishikawa <nd.12021218@gmail.com>" , " Marc Espín <mespinsanz@gmail.com>" ]
6
6
description = " Use free svg icons in your Dioxus projects easily with dioxus-free-icons."
You can’t perform that action at this time.
0 commit comments